nixpkgs/pkgs/development/libraries/haskell/zlib-bindings/0.1.0.1.nix
Peter Simons d5b7235de1 Updated Haskell packages.
- blaze-html: updated to version 0.4.3.3
 - failure: updated 0.2.0.1
 - resourcet: updated to version 0.3.2
 - zlib-bindings: updated to version 0.1.0.1

svn path=/nixpkgs/trunk/; revision=33469
2012-03-29 11:17:28 +00:00

16 lines
472 B
Nix

{ cabal, zlib }:
cabal.mkDerivation (self: {
pname = "zlib-bindings";
version = "0.1.0.1";
sha256 = "0r1hjmmxb9kz5fvfrjvzjd0pnhb87vyldqvb73yjq35s16bj4vlc";
buildDepends = [ zlib ];
meta = {
homepage = "http://github.com/snoyberg/zlib-bindings";
description = "Low-level bindings to the zlib package";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})