gnu: ghc-http: Update to 4000.3.12.
* gnu/packages/haskell-web.scm (ghc-http): Update to 4000.3.12. [native-inputs]: Add ghc-httpd-shed, ghc-test-framework, and ghc-test-framework-hunit. [inputs]: Add ghc-case-insensitive, ghc-conduit, ghc-conduit-extra, ghc-http-types, ghc-puremd5, and ghc-split.
This commit is contained in:
parent
83c4a5bd38
commit
4aa46e40e8
|
@ -147,27 +147,34 @@ both client and server code).")
|
||||||
(define-public ghc-http
|
(define-public ghc-http
|
||||||
(package
|
(package
|
||||||
(name "ghc-http")
|
(name "ghc-http")
|
||||||
(version "4000.3.3")
|
(version "4000.3.12")
|
||||||
(outputs '("out" "doc"))
|
(outputs '("out" "doc"))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append "https://hackage.haskell.org/package/HTTP/"
|
||||||
"https://hackage.haskell.org/package/HTTP/HTTP-"
|
"HTTP-" version ".tar.gz"))
|
||||||
version
|
|
||||||
".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1wlvvqcxsnd2is3khsla0vd8i9cy12v1pg6d6i13ihcd131a7bdv"))))
|
"140r6qy1ay25piv0z3hih11zhigyi08nkwc32097j43pjff6mzx3"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ghc-hunit" ,ghc-hunit)))
|
`(("ghc-httpd-shed" ,ghc-httpd-shed)
|
||||||
|
("ghc-hunit" ,ghc-hunit)
|
||||||
|
("ghc-test-framework" ,ghc-test-framework)
|
||||||
|
("ghc-test-framework-hunit" ,ghc-test-framework-hunit)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("ghc-old-time" ,ghc-old-time)
|
`(("ghc-case-insensitive" ,ghc-case-insensitive)
|
||||||
|
("ghc-conduit" ,ghc-conduit)
|
||||||
|
("ghc-conduit-extra" ,ghc-conduit-extra)
|
||||||
|
("ghc-http-types" ,ghc-http-types)
|
||||||
|
("ghc-old-time" ,ghc-old-time)
|
||||||
("ghc-parsec" ,ghc-parsec)
|
("ghc-parsec" ,ghc-parsec)
|
||||||
|
("ghc-puremd5" ,ghc-puremd5)
|
||||||
("ghc-mtl" ,ghc-mtl)
|
("ghc-mtl" ,ghc-mtl)
|
||||||
("ghc-network" ,ghc-network)
|
("ghc-network" ,ghc-network)
|
||||||
("ghc-network-uri" ,ghc-network-uri)))
|
("ghc-network-uri" ,ghc-network-uri)
|
||||||
|
("ghc-split" ,ghc-split)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ; FIXME: currently missing libraries used for tests.
|
`(#:tests? #f)) ; FIXME: currently missing libraries used for tests.
|
||||||
(home-page "https://github.com/haskell/HTTP")
|
(home-page "https://github.com/haskell/HTTP")
|
||||||
|
|
Loading…
Reference in New Issue