zlib-ng: 2.0.7 -> 2.1.2

This commit is contained in:
Franz Pletz 2023-06-21 14:50:37 +02:00
parent 43be38bd78
commit 2983baa4e7
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -1,22 +1,29 @@
{ lib, stdenv, fetchFromGitHub
, cmake, pkg-config
{ lib, stdenv, fetchFromGitHub, fetchpatch
, cmake, pkg-config, gtest
, withZlibCompat ? false
}:
stdenv.mkDerivation rec {
pname = "zlib-ng";
version = "2.0.7";
version = "2.1.2";
src = fetchFromGitHub {
owner = "zlib-ng";
repo = "zlib-ng";
rev = version;
sha256 = "sha256-Q+u71XXfHafmTL8tmk4XcgpbSdBIunveL9Q78LqiZF0=";
sha256 = "sha256-6IEH9IQsBiNwfAZAemmP0/p6CTOzxEKyekciuH6pLhw=";
};
patches = [
(fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/zlib-ng/zlib-ng/pull/1519.patch";
hash = "sha256-itobS8kJ2Hj3RfjslVkvEVdQ4t5eeIrsA9muRZt03pE=";
})
];
outputs = [ "out" "dev" "bin" ];
nativeBuildInputs = [ cmake pkg-config ];
nativeBuildInputs = [ cmake pkg-config gtest ];
cmakeFlags = [
"-DCMAKE_INSTALL_PREFIX=/"