mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add ghc-http-api-data.
* gnu/packages/haskell.scm (ghc-http-api-data): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c56a30b3ba
commit
b6d8ea42a3
1 changed files with 31 additions and 0 deletions
|
@ -9154,4 +9154,35 @@ (define-public ghc-time-locale-compat
|
||||||
TimeLocale.")
|
TimeLocale.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-http-api-data
|
||||||
|
(package
|
||||||
|
(name "ghc-http-api-data")
|
||||||
|
(version "0.3.7.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://hackage.haskell.org/package/"
|
||||||
|
"http-api-data-" version "/"
|
||||||
|
"http-api-data-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1zbmf0kkfsw7pfznisi205gh7jd284gfarxsyiavd2iw26akwqwc"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(arguments `(#:tests? #f)) ; FIXME: Tests require QuickCheck >= 2.9
|
||||||
|
(inputs `(("ghc-attoparsec" ,ghc-attoparsec)
|
||||||
|
("ghc-attoparsec-iso8601" ,ghc-attoparsec-iso8601)
|
||||||
|
("ghc-hashable" ,ghc-hashable)
|
||||||
|
("ghc-http-types" ,ghc-http-types)
|
||||||
|
("ghc-text" ,ghc-text)
|
||||||
|
("ghc-time-locale-compat" ,ghc-time-locale-compat)
|
||||||
|
("ghc-unordered-containers" ,ghc-unordered-containers)
|
||||||
|
("ghc-uri-bytestring" ,ghc-uri-bytestring)
|
||||||
|
("ghc-uuid-types" ,ghc-uuid-types)))
|
||||||
|
(home-page "https://github.com/fizruk/http-api-data")
|
||||||
|
(synopsis "Convert to/from HTTP API data like URL pieces, headers and
|
||||||
|
query parameters")
|
||||||
|
(description "This Haskell package defines typeclasses used for converting
|
||||||
|
Haskell data types to and from HTTP API data.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
;;; haskell.scm ends here
|
;;; haskell.scm ends here
|
||||||
|
|
Loading…
Reference in a new issue