2021-01-15 01:19:50 -08:00
|
|
|
{ lib, 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";
|
2021-01-20 01:32:15 -08:00
|
|
|
version = "1.22";
|
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";
|
2021-01-20 01:32:15 -08:00
|
|
|
sha256 = "sha256-wzQtQuZxOcFluLEo0DO1yWiToTrF8lkzGQMVIU6HqUg=";
|
2013-02-06 04:15:12 -08:00
|
|
|
};
|
|
|
|
|
2018-07-29 13:48:24 -07:00
|
|
|
configureFlags = [
|
|
|
|
"CPPFLAGS=-DNDEBUG"
|
|
|
|
"CFLAGS=-O3"
|
|
|
|
"CXXFLAGS=-O3"
|
2021-01-15 01:19:50 -08:00
|
|
|
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
2018-07-29 13:48:24 -07:00
|
|
|
"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";
|
2021-01-15 01:19:50 -08:00
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
platforms = lib.platforms.all;
|
2013-02-06 04:15:12 -08:00
|
|
|
};
|
|
|
|
}
|