haskellPackages.bzlib: New expression

This commit is contained in:
Lukas Toth
2014-04-15 01:59:19 +02:00
committed by Peter Simons
parent cf63d8953c
commit 66e750190f
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{ cabal, bzip2 }:
cabal.mkDerivation (self: {
pname = "bzlib";
version = "0.5.0.4";
sha256 = "1vf37y7wknrihf7hipd6lihkmn7sszbgfb325my52yzbjs3baccd";
extraLibraries = [ bzip2 ];
meta = {
description = "Compression and decompression in the bzip2 format";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})