diff options
author | Philip McGrath <philip@philipmcgrath.com> | 2022-05-18 14:11:05 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-22 01:07:54 +0200 |
commit | 2ea11208f24a23d5aa9dd4b8639f0eec44c86705 (patch) | |
tree | 8d78d8c239ccbdf90ba7a24a0cba48663d36a6b4 | |
parent | gnu: Add elm-file. (diff) | |
download | guix-2ea11208f24a23d5aa9dd4b8639f0eec44c86705.tar.gz guix-2ea11208f24a23d5aa9dd4b8639f0eec44c86705.tar.bz2 guix-2ea11208f24a23d5aa9dd4b8639f0eec44c86705.tar.xz |
gnu: Add elm-http.
* gnu/packages/elm.scm (elm-http): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/elm.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/elm.scm b/gnu/packages/elm.scm index 3bf3b66a6e..68636c3192 100644 --- a/gnu/packages/elm.scm +++ b/gnu/packages/elm.scm | |||
@@ -331,3 +331,24 @@ and @code{DataView}.") | |||
331 | (description "This package enables Elm programs to select files, download | 331 | (description "This package enables Elm programs to select files, download |
332 | files, and work with file content.") | 332 | files, and work with file content.") |
333 | (license license:bsd-3))) | 333 | (license license:bsd-3))) |
334 | |||
335 | (define-public elm-http | ||
336 | (package | ||
337 | (name "elm-http") | ||
338 | (version "2.0.0") | ||
339 | (source | ||
340 | (elm-package-origin | ||
341 | "elm/http" | ||
342 | version | ||
343 | (base32 "0mfbz0lkfidmq5xpv5csw8943q0yrpvj0rwd2vb0gc8rbsfc9dg8"))) | ||
344 | (build-system elm-build-system) | ||
345 | (propagated-inputs | ||
346 | (list elm-json | ||
347 | elm-file | ||
348 | elm-core | ||
349 | elm-bytes)) | ||
350 | (home-page "https://package.elm-lang.org/packages/elm/http/2.0.0") | ||
351 | (synopsis "Make HTTP requests in Elm") | ||
352 | (description "This package enables Elm programs to make HTTP requests and | ||
353 | talk to servers.") | ||
354 | (license license:bsd-3))) | ||