3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/zlib-bindings/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

17 lines
534 B
Nix

{ cabal, hspec, QuickCheck, zlib }:
cabal.mkDerivation (self: {
pname = "zlib-bindings";
version = "0.1.1.3";
sha256 = "18jhav7chbapakm9mwn7bn9lgvip7qaz61dw5gwv2nyalvm96qfr";
buildDepends = [ zlib ];
testDepends = [ hspec QuickCheck 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 ];
};
})