2021-12-06 16:07:01 +00:00
|
|
|
{ lib, stdenv, fetchurl, texinfo }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "lzlib";
|
2021-12-19 01:06:50 +00:00
|
|
|
version = "1.12";
|
2021-12-06 16:07:01 +00:00
|
|
|
outputs = [ "out" "info" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ texinfo ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://savannah/lzip/${pname}/${pname}-${version}.tar.gz";
|
2021-12-19 01:06:50 +00:00
|
|
|
sha256 = "sha256-jl2EJC61LPHcyY5YvZuo7xrvpQFDGr3QJzoiv0zjN7E=";
|
2021-12-06 16:07:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|