gnu: ghc-http-conduit: Update to 2.3.2.
* gnu/packages/haskell-web.scm (ghc-http-conduit): Update to 2.3.2. [inputs]: Add ghc-unliftio.
This commit is contained in:
parent
6c7a3279ad
commit
828c9ff831
|
@ -318,15 +318,16 @@ and HPACK. Currently HTTP/2 16 framing and HPACK 10 is supported.")
|
||||||
(define-public ghc-http-conduit
|
(define-public ghc-http-conduit
|
||||||
(package
|
(package
|
||||||
(name "ghc-http-conduit")
|
(name "ghc-http-conduit")
|
||||||
(version "2.2.4")
|
(version "2.3.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://hackage.haskell.org/package/"
|
(uri (string-append "https://hackage.haskell.org/package/"
|
||||||
"http-conduit-" version "/" "http-conduit-"
|
"http-conduit-" version "/" "http-conduit-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256 (base32
|
(sha256
|
||||||
"1wcl3lpg4v1ylq9j77j9fmf6l9qbmp8dmj3a9829q19q6bbgza7l"))))
|
(base32
|
||||||
|
"1iay4hr0mj8brkxvgkv1liqa8irl9axfc3qhn8qsvcyq4n1l95km"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
;; FIXME: `httpLbs TLS` in test-suite `test` fails with
|
;; FIXME: `httpLbs TLS` in test-suite `test` fails with
|
||||||
;; ConnectionFailure getProtocolByName: does not exist (no such protocol
|
;; ConnectionFailure getProtocolByName: does not exist (no such protocol
|
||||||
|
@ -343,7 +344,8 @@ and HPACK. Currently HTTP/2 16 framing and HPACK 10 is supported.")
|
||||||
("ghc-http-client-tls" ,ghc-http-client-tls)
|
("ghc-http-client-tls" ,ghc-http-client-tls)
|
||||||
("ghc-monad-control" ,ghc-monad-control)
|
("ghc-monad-control" ,ghc-monad-control)
|
||||||
("ghc-mtl" ,ghc-mtl)
|
("ghc-mtl" ,ghc-mtl)
|
||||||
("ghc-exceptions" ,ghc-exceptions)))
|
("ghc-exceptions" ,ghc-exceptions)
|
||||||
|
("ghc-unliftio" ,ghc-unliftio)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ghc-hunit" ,ghc-hunit)
|
`(("ghc-hunit" ,ghc-hunit)
|
||||||
("ghc-hspec" ,ghc-hspec)
|
("ghc-hspec" ,ghc-hspec)
|
||||||
|
|
Loading…
Reference in New Issue