summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/zlib/0.5.2.0.nix
blob: 87b60d13654029e843f22981df641cd17f738d2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, Cabal, zlib }:

cabal.mkDerivation (self: {
  pname = "zlib";
  version = "0.5.2.0";
  sha256 = "4119fb627e0adc2b129acd86fe5724cf05a49d8de5b64eb7a6e519d3befd3b8f";
  buildDepends = [ Cabal ];
  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
      self.stdenv.lib.maintainers.simons
    ];
  };
})