me
/
guix
Archived
1
0
Fork 0

gnu: Add elm-http.

* gnu/packages/elm.scm (elm-http): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Philip McGrath 2022-05-18 14:11:05 -04:00 committed by Ludovic Courtès
parent 324b404804
commit 2ea11208f2
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 21 additions and 0 deletions

View File

@ -331,3 +331,24 @@ and @code{DataView}.")
(description "This package enables Elm programs to select files, download (description "This package enables Elm programs to select files, download
files, and work with file content.") files, and work with file content.")
(license license:bsd-3))) (license license:bsd-3)))
(define-public elm-http
(package
(name "elm-http")
(version "2.0.0")
(source
(elm-package-origin
"elm/http"
version
(base32 "0mfbz0lkfidmq5xpv5csw8943q0yrpvj0rwd2vb0gc8rbsfc9dg8")))
(build-system elm-build-system)
(propagated-inputs
(list elm-json
elm-file
elm-core
elm-bytes))
(home-page "https://package.elm-lang.org/packages/elm/http/2.0.0")
(synopsis "Make HTTP requests in Elm")
(description "This package enables Elm programs to make HTTP requests and
talk to servers.")
(license license:bsd-3)))