lzlib: init at 1.10

This commit is contained in:
Emery Hemingway 2021-12-01 14:23:58 +00:00 committed by ehmry
parent bc0e3db2b6
commit daeb62345c
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, stdenv, fetchurl, texinfo }:
stdenv.mkDerivation rec {
pname = "lzlib";
version = "1.10";
outputs = [ "out" "info" ];
nativeBuildInputs = [ texinfo ];
src = fetchurl {
url = "mirror://savannah/lzip/${pname}/${pname}-${version}.tar.gz";
sha256 = "sha256-HWq3gApbQ+Vv0gYH/Sz9qeVQNQ3JX1vrakzhT4W0EEM=";
};
makeFlags = [ "AR:=$(AR)" "CC:=$(CC)" ];
doCheck = true;
meta = with lib; {
homepage = "https://www.nongnu.org/lzip/${pname}.html";
description =
"Data compression library providing in-memory LZMA compression and decompression functions, including integrity checking of the decompressed data";
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ ehmry ];
};
}

View file

@ -18542,6 +18542,8 @@ with pkgs;
lyra = callPackage ../development/libraries/lyra { };
lzlib = callPackage ../development/libraries/lzlib { };
lzo = callPackage ../development/libraries/lzo { };
opencl-clang = callPackage ../development/libraries/opencl-clang { };