gnu: Add ghc-bzlib-conduit.

* gnu/packages/haskell.scm (ghc-bzlib-conduit): New variable.
This commit is contained in:
Ricardo Wurmus 2018-10-02 18:32:48 +02:00 committed by Ricardo Wurmus
parent 44c6180b3f
commit 4fc161b9c6
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -10879,6 +10879,34 @@ (define-public ghc-lzma-conduit
compression algorithm used in the @code{.xz} file format.")
(license license:bsd-3)))
(define-public ghc-bzlib-conduit
(package
(name "ghc-bzlib-conduit")
(version "0.3.0.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://hackage.haskell.org/package/bzlib-conduit/"
"bzlib-conduit-" version ".tar.gz"))
(sha256
(base32
"0fd2hnr782s7qgipazg2yxwia9qqhkvm9bcm90773c3zkxa13n23"))))
(build-system haskell-build-system)
(inputs
`(("ghc-bindings-dsl" ,ghc-bindings-dsl)
("ghc-conduit" ,ghc-conduit)
("ghc-data-default-class" ,ghc-data-default-class)
("ghc-resourcet" ,ghc-resourcet)))
(native-inputs
`(("ghc-hspec" ,ghc-hspec)
("ghc-random" ,ghc-random)))
(home-page "https://github.com/snoyberg/bzlib-conduit")
(synopsis "Streaming compression/decompression via conduits")
(description
"This package provides Haskell bindings to bzlib and Conduit support for
streaming compression and decompression.")
(license license:bsd-3)))
(define-public ghc-weigh
(package
(name "ghc-weigh")