diff options
| author | Giacomo Leidi <goodoldpaul@autistici.org> | 2025-09-21 21:18:44 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-09-30 08:43:46 +0200 |
| commit | 7d43f90678cbce08440789e27544fed0321ebd8a (patch) | |
| tree | 5e0c99bf603e27db987566c8bd87f10082271ec3 /gnu/packages | |
| parent | e1d0e6163e6aac6464b34fe221059c7a38b14ac0 (diff) | |
gnu: Add elixir-neuron.
* gnu/packages/elixir-web.scm (elixir-neuron): New variable.
Change-Id: Id05619805600a441eaaf5e84fbcfa82c5e0f0caf
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/elixir-web.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/elixir-web.scm b/gnu/packages/elixir-web.scm index a9580dd3b10..7c16b3fd343 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") |
