guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

16/18: gnu: Add elixir-dialyxir.


From: guix-commits
Subject: 16/18: gnu: Add elixir-dialyxir.
Date: Sun, 17 Dec 2023 18:20:49 -0500 (EST)

lilyp pushed a commit to branch master
in repository guix.

commit 32de15206d95d37c066ec13ce95a106d41fae11f
Author: Pierre-Henry Fröhring <phfrohring@deeplinks.com>
AuthorDate: Sun Dec 10 14:04:07 2023 +0100

    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>
---
 gnu/packages/elixir-xyz.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/elixir-xyz.scm b/gnu/packages/elixir-xyz.scm
index df43284301..5a7330ca45 100644
--- a/gnu/packages/elixir-xyz.scm
+++ b/gnu/packages/elixir-xyz.scm
@@ -248,6 +248,25 @@ things like Dialyzer errors and Observer.")
     (home-page "https://hexdocs.pm/erlex/";)
     (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
 ;;; of a merge conflict, place them above by existing packages with similar



reply via email to

[Prev in Thread] Current Thread [Next in Thread]