guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 7d43f90678cbce08440789e27544fed0321ebd8a
Author: Giacomo Leidi <[email protected]>
AuthorDate: Sun Sep 21 21:18:44 2025 +0200

    gnu: Add elixir-neuron.
    
    * gnu/packages/elixir-web.scm (elixir-neuron): New variable.
    
    Change-Id: Id05619805600a441eaaf5e84fbcfa82c5e0f0caf
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/elixir-web.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/elixir-web.scm b/gnu/packages/elixir-web.scm
index a9580dd3b1..7c16b3fd34 100644
--- a/gnu/packages/elixir-web.scm
+++ b/gnu/packages/elixir-web.scm
@@ -346,6 +346,26 @@ having different kinds of processes handle connections.")
     (home-page "https://hexdocs.pm/mint/";)
     (license license:asl2.0)))
 
+(define-public elixir-neuron
+  (package
+    (name "elixir-neuron")
+    (version "5.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (hexpm-uri "neuron" version))
+       (sha256
+        (base32 "1kmnhlihpv1075i3f5izysx2vdgqw71lnnxw8yifxh6r1l7dpk93"))))
+    (build-system mix-build-system)
+    (arguments
+     ;; Tests depend on Coverex, which is not packaged yet.
+     (list #:tests? #f))
+    (propagated-inputs (list elixir-httpoison elixir-jason))
+    (synopsis "GraphQL client for Elixir")
+    (description "This package provides a @code{GraphQL} client for Elixir.")
+    (home-page "https://hexdocs.pm/neuron/";)
+    (license license:isc)))
+
 (define-public elixir-plug-crypto
   (package
     (name "elixir-plug-crypto")

Reply via email to