nixpkgs/pkgs/tools/compression/lzip/default.nix

38 lines
1,009 B
Nix
Raw Normal View History

2021-01-15 10:19:50 +01:00
{ lib, stdenv, fetchurl, texinfo }:
2013-02-06 13:15:12 +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 13:15:12 +01:00
stdenv.mkDerivation rec {
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 {
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
};
configureFlags = [
"CPPFLAGS=-DNDEBUG"
"CFLAGS=-O3"
"CXXFLAGS=-O3"
2021-01-15 10:19:50 +01:00
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
"CXX=${stdenv.cc.targetPrefix}c++";
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 = {
homepage = "https://www.nongnu.org/lzip/lzip.html";
description = "A lossless data compressor based on the LZMA algorithm";
license = lib.licenses.gpl2Plus;
2021-01-15 10:19:50 +01:00
platforms = lib.platforms.all;
2013-02-06 13:15:12 +01:00
};
}