~ruther/guix-local

e5dd14ca27d943bf488dc96b33ca72212c83922e — Giacomo Leidi 6 months ago ca09092
gnu: Add elixir-process-tree.

* gnu/packages/elixir-xyz.scm (elixir-process-tree): New variable.

Change-Id: Iffd115d778c5a0e4c5e776debd2de7f0efd44afc
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
1 files changed, 18 insertions(+), 0 deletions(-)

M gnu/packages/elixir-xyz.scm
M gnu/packages/elixir-xyz.scm => gnu/packages/elixir-xyz.scm +18 -0
@@ 427,6 427,24 @@ structures in Elixir.")
    (home-page "https://hexdocs.pm/pathex/")
    (license license:bsd-2)))

(define-public elixir-process-tree
  (package
    (name "elixir-process-tree")
    (version "0.2.1")
    (source
     (origin
       (method url-fetch)
       (uri (hexpm-uri "process_tree" version))
       (sha256
        (base32 "04z76m5vpbmhl4apsszy93g2a3iw02kg2dvhvbp1ld8l0nzydvk8"))))
    (build-system mix-build-system)
    (synopsis "Avoid global state in Elixir applications")
    (description
     "This package provides a module for avoiding global state in Elixir
applications.")
    (home-page "https://hexdocs.pm/process_tree/")
    (license license:expat)))

;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar