~ruther/guix-local

ca09092edd94c9af42eca692c4f8ef5c37439e8a — Giacomo Leidi 6 months ago d6c3f39
gnu: Add elixir-pathex.

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

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

M gnu/packages/elixir-xyz.scm
M gnu/packages/elixir-xyz.scm => gnu/packages/elixir-xyz.scm +17 -0
@@ 410,6 410,23 @@ library to track ownership of resources across processes.")
    (home-page "https://hexdocs.pm/nimble_ownership/")
    (license license:asl2.0)))

(define-public elixir-pathex
  (package
    (name "elixir-pathex")
    (version "2.6.1")
    (source
     (origin
       (method url-fetch)
       (uri (hexpm-uri "pathex" version))
       (sha256
        (base32 "1sabkkng5w6fq1v4vysy13vh2rh0sfjzfw3hfy3sism2bx5qx7qm"))))
    (build-system mix-build-system)
    (synopsis "Functional lenses for nested structures")
    (description "This library implements functional lenses for nested
structures in Elixir.")
    (home-page "https://hexdocs.pm/pathex/")
    (license license:bsd-2)))

;;;
;;; 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