gnu: Add elixir-dialyxir.

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

Change-Id: I387062e0aaaded448022aa7534b95859b5979a06
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Pierre-Henry Fröhring 2023-12-10 14:04:07 +01:00 committed by Liliana Marie Prikler
parent 43a74143ea
commit 32de15206d
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -248,6 +248,25 @@ (define-public elixir-erlex
(home-page "https://hexdocs.pm/erlex/") (home-page "https://hexdocs.pm/erlex/")
(license license:asl2.0))) (license license:asl2.0)))
(define-public elixir-dialyxir
(package
(name "elixir-dialyxir")
(version "1.4.1")
(source
(origin
(method url-fetch)
(uri (hexpm-uri name version))
(sha256
(base32 "00cqwhd1wabwds44jz94rvvr8z8cp12884d3lp69fqkrszb9bdw4"))))
(build-system mix-build-system)
(arguments (list #:tests? #f)) ; no tests
(propagated-inputs (list elixir-erlex))
(synopsis "Mix tasks to simplify use of Dialyzer")
(description
"Mix Tasks are usable from the directory of the mix project you want to analyze.")
(home-page "https://hexdocs.pm/dialyxir/")
(license license:asl2.0)))
;;; ;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; 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 ;;; of a merge conflict, place them above by existing packages with similar