de1a6e09d7
haskell-attoparsec-conduit: added version 0.0.0 haskell-blaze-builder-conduit: added version 0.0.0 haskell-conduit: added version 0.0.0.1 haskell-http-conduit: added version 1.0.0 haskell-lifted-base: added version 0.1.0.2 haskell-xml-conduit: added version 0.5.0 haskell-zlib-conduit: added version 0.0.0 svn path=/nixpkgs/trunk/; revision=31141
19 lines
584 B
Nix
19 lines
584 B
Nix
{ cabal, conduit, transformers, zlibBindings }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "zlib-conduit";
|
|
version = "0.0.0";
|
|
sha256 = "1nqcw809xqlycggn4nqys205gv3kjwws16910xlx2b8b9f8ayxjg";
|
|
buildDepends = [ conduit transformers zlibBindings ];
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/conduit";
|
|
description = "Streaming compression/decompression via conduits";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|