2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchurl, texinfo }:
|
2013-02-06 12:15:12 +00:00
|
|
|
|
2020-06-26 21:44:45 +01:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2013-02-06 12:15:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "lzip";
|
2022-02-05 00:11:15 +00:00
|
|
|
version = "1.23";
|
|
|
|
outputs = [ "out" "man" "info" ];
|
2013-02-06 12:15:12 +00:00
|
|
|
|
2018-07-20 18:48:42 +01:00
|
|
|
nativeBuildInputs = [ texinfo ];
|
2013-03-13 13:04:33 +00:00
|
|
|
|
2013-02-06 12:15:12 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://savannah/lzip/${pname}-${version}.tar.gz";
|
2022-02-05 00:11:15 +00:00
|
|
|
sha256 = "sha256-R5LAR93xXvKdVbqOaKGiHgy3aS2H7N9yBEGYZFgvKA0=";
|
2013-02-06 12:15:12 +00:00
|
|
|
};
|
|
|
|
|
2018-07-29 21:48:24 +01:00
|
|
|
configureFlags = [
|
|
|
|
"CPPFLAGS=-DNDEBUG"
|
|
|
|
"CFLAGS=-O3"
|
|
|
|
"CXXFLAGS=-O3"
|
2022-01-20 15:23:32 +00:00
|
|
|
"CXX=${stdenv.cc.targetPrefix}c++"
|
|
|
|
];
|
2013-03-13 13:05:54 +00:00
|
|
|
|
2017-12-04 19:08:11 +00:00
|
|
|
setupHook = ./lzip-setup-hook.sh;
|
|
|
|
|
2013-02-06 12:15:12 +00:00
|
|
|
doCheck = true;
|
2017-12-04 19:08:11 +00:00
|
|
|
enableParallelBuilding = true;
|
2013-02-06 12:15:12 +00:00
|
|
|
|
2022-01-20 15:25:08 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.nongnu.org/lzip/lzip.html";
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "A lossless data compressor based on the LZMA algorithm";
|
2022-01-04 14:02:02 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2022-01-20 15:25:08 +00:00
|
|
|
maintainers = with maintainers; [ vlaci ];
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.all;
|
2013-02-06 12:15:12 +00:00
|
|
|
};
|
|
|
|
}
|