Skip to content
Snippets Groups Projects
Commit 2ab2b356 authored by Daniel Firth's avatar Daniel Firth
Browse files

zlib: init at 0.6.3.0

parent 8318d490
Branches
Tags
No related merge requests found
...@@ -11,4 +11,6 @@ final: prev: { ...@@ -11,4 +11,6 @@ final: prev: {
splitmix = prev.callPackage ./pkgs/splitmix.nix { inherit (pkgs) testu01; }; splitmix = prev.callPackage ./pkgs/splitmix.nix { inherit (pkgs) testu01; };
text-icu = prev.callPackage ./pkgs/text-icu.nix { inherit (pkgs) icu-i18n; }; text-icu = prev.callPackage ./pkgs/text-icu.nix { inherit (pkgs) icu-i18n; };
zlib = prev.callPackage ./pkgs/zlib.nix { inherit (pkgs) zlib; };
} }
...@@ -937,4 +937,5 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -937,4 +937,5 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "xml" "1.3.14" , callHackage "xml" "1.3.14"
, callHackage "yaml" "0.11.8.0" , callHackage "yaml" "0.11.8.0"
, callHackage "zip-archive" "0.4.2.2" , callHackage "zip-archive" "0.4.2.2"
, callHackage "zlib" "0.6.3.0"
] ]
...@@ -1501,4 +1501,6 @@ self: with pkgs.haskell.lib; { ...@@ -1501,4 +1501,6 @@ self: with pkgs.haskell.lib; {
zip-archive = self.callPackage (./pkgs/zip-archive.nix) { }; zip-archive = self.callPackage (./pkgs/zip-archive.nix) { };
zlib = self.callPackage (./pkgs/zlib.nix) { };
} }
{ mkDerivation
, base
, bytestring
, lib
, QuickCheck
, tasty
, tasty-quickcheck
, zlib
}:
mkDerivation {
pname = "zlib";
version = "0.6.3.0";
sha256 = "9eaa989ad4534438b5beb51c1d3a4c8f6a088fdff0b259a5394fbf39aaee04da";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring ];
librarySystemDepends = [ zlib ];
testHaskellDepends = [
base
bytestring
QuickCheck
tasty
tasty-quickcheck
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Compression and decompression in the gzip and zlib formats";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment