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