2013-03-13 06:04:33 -07:00
|
|
|
{ stdenv, fetchurl, texinfo }:
|
2013-02-06 04:15:12 -08:00
|
|
|
|
2020-06-26 13:44:45 -07: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 04:15:12 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "lzip";
|
2019-01-13 13:52:57 -08:00
|
|
|
version = "1.21";
|
2013-02-06 04:15:12 -08:00
|
|
|
|
2018-07-20 10:48:42 -07:00
|
|
|
nativeBuildInputs = [ texinfo ];
|
2013-03-13 06:04:33 -07:00
|
|
|
|
2013-02-06 04:15:12 -08:00
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://savannah/lzip/${pname}-${version}.tar.gz";
|
2019-01-13 13:52:57 -08:00
|
|
|
sha256 = "12qdcw5k1cx77brv9yxi1h4dzwibhfmdpigrj43nfk8nscwm12z4";
|
2013-02-06 04:15:12 -08:00
|
|
|
};
|
|
|
|
|
2018-07-29 13:48:24 -07:00
|
|
|
configureFlags = [
|
|
|
|
"CPPFLAGS=-DNDEBUG"
|
|
|
|
"CFLAGS=-O3"
|
|
|
|
"CXXFLAGS=-O3"
|
|
|
|
] ++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
|
|
|
"CXX=${stdenv.cc.targetPrefix}c++";
|
2013-03-13 06:05:54 -07:00
|
|
|
|
2017-12-04 11:08:11 -08:00
|
|
|
setupHook = ./lzip-setup-hook.sh;
|
|
|
|
|
2013-02-06 04:15:12 -08:00
|
|
|
doCheck = true;
|
2017-12-04 11:08:11 -08:00
|
|
|
enableParallelBuilding = true;
|
2013-02-06 04:15:12 -08:00
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.nongnu.org/lzip/lzip.html";
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "A lossless data compressor based on the LZMA algorithm";
|
2013-02-06 04:15:12 -08:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2018-07-20 10:48:42 -07:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2013-02-06 04:15:12 -08:00
|
|
|
};
|
|
|
|
}
|