haskell-zlib: add version 0.5.4.1

This commit is contained in:
Peter Simons
2013-03-01 10:13:03 +01:00
parent 097705cd86
commit 8f83550939
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.1";
sha256 = "0l550l2qw4gx530h1yjjpdh6rkm59l9l6jbmlm0vx41cqpj6b8yc";
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 ];
};
})