haskell-zlib: add version 0.5.4.0

This commit is contained in:
Peter Simons
2012-09-13 14:43:55 +02:00
parent b9739ad02f
commit d820210188
2 changed files with 19 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
{ cabal, zlib }:
cabal.mkDerivation (self: {
pname = "zlib";
version = "0.5.4.0";
sha256 = "18hc4wr8brzbl9qapjbjyb9kyqrznv2xbw7rv1a6k8i3392ilxv1";
extraLibraries = [ zlib ];
meta = {
description = "Compression and decompression in the gzip and zlib formats";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})