nixpkgs/pkgs/development/libraries/haskell/zlib/0.5.2.0.nix
Andres Löh 9370225663 Haskell Platform 2010.1.0.0
svn path=/nixpkgs/trunk/; revision=20904
2010-04-01 10:56:48 +00:00

14 lines
434 B
Nix

{cabal, zlib}:
cabal.mkDerivation (self : {
pname = "zlib";
version = "0.5.2.0"; # Haskell Platform 2010.1.0.0
sha256 = "4119fb627e0adc2b129acd86fe5724cf05a49d8de5b64eb7a6e519d3befd3b8f";
# TODO: find out exactly why propagated is needed here (to build other
# packages depending on zlib):
propagatedBuildInputs = [zlib];
meta = {
description = "Compression and decompression in the gzip and zlib formats";
};
})