d5b7235de1
- 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
16 lines
472 B
Nix
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 ];
|
|
};
|
|
})
|