mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
Merge pull request #118126 from Izorkin/init-zlib-ng
zlib-ng: init at 2.0.2
This commit is contained in:
commit
c96508ac3b
34
pkgs/development/libraries/zlib-ng/default.nix
Normal file
34
pkgs/development/libraries/zlib-ng/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ lib, stdenv, fetchFromGitHub
|
||||
, cmake, pkg-config
|
||||
, withZlibCompat ? false
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "zlib-ng";
|
||||
version = "2.0.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zlib-ng";
|
||||
repo = "zlib-ng";
|
||||
rev = version;
|
||||
sha256 = "1cl6asrav2512j7p02zcpibywjljws0m7aazvb3q2r9qiyvyswji";
|
||||
};
|
||||
|
||||
outputs = [ "out" "dev" "bin" ];
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DCMAKE_INSTALL_PREFIX=/"
|
||||
"-DBUILD_SHARED_LIBS=ON"
|
||||
"-DINSTALL_UTILS=ON"
|
||||
] ++ lib.optionals withZlibCompat [ "-DZLIB_COMPAT=ON" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "zlib data compression library for the next generation systems";
|
||||
homepage = "https://github.com/zlib-ng/zlib-ng";
|
||||
license = licenses.zlib;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ izorkin ];
|
||||
};
|
||||
}
|
@ -17783,6 +17783,8 @@ in
|
||||
|
||||
zlib = callPackage ../development/libraries/zlib { };
|
||||
|
||||
zlib-ng = callPackage ../development/libraries/zlib-ng { };
|
||||
|
||||
libdynd = callPackage ../development/libraries/libdynd { };
|
||||
|
||||
zlog = callPackage ../development/libraries/zlog { };
|
||||
|
Loading…
Reference in New Issue
Block a user