nixpkgs/pkgs/development/libraries/haskell/zlib-conduit/default.nix
Peter Simons b041d3e49b Updated Haskell packages.
- blaze-builder-conduit: updated to version 0.4.0.1
 - enumerator: updated to version 0.4.19
 - persistent-sqlite: updated to version 0.9.0.1
 - persistent-template: updated to version 0.9.0.1
 - persistent: updated to version 0.9.0.1
 - pool-conduit: updated to version 0.1.0.1
 - semigroups: updated to version 0.8.2
 - shakespeare-css: updated to version 1.0.1.1
 - shakespeare-i18n: updated to version 1.0.0.1
 - shakespeare-js: updated to version 1.0.0.1
 - shakespeare-text: updated to version 1.0.0.1
 - shakespeare: updated to version 1.0.0.1
 - void: updated to version 0.5.5.1
 - wai-app-static: updated to version 1.2.0.1
 - wai: updated to version 1.2.0.1
 - warp: updated to version 1.2.0.1
 - yesod-core: updated to version 1.0.0.2
 - yesod: updated to version 1.0.0.2
 - zlib-conduit: updated to version 0.4.0.1

svn path=/nixpkgs/trunk/; revision=33683
2012-04-09 12:37:39 +00:00

16 lines
535 B
Nix

{ cabal, conduit, transformers, zlibBindings }:
cabal.mkDerivation (self: {
pname = "zlib-conduit";
version = "0.4.0.1";
sha256 = "07x0fgzxnwaaw5yg1ks2w9dc66biqbg50x79h84jpgb6d9pw2d7z";
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 ];
};
})