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

38 lines
1,010 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, texinfo }:
2013-02-06 12:15:12 +00: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 {
pname = "lzip";
version = "1.21";
2013-02-06 12:15:12 +00:00
2018-07-20 17:48:42 +00:00
nativeBuildInputs = [ texinfo ];
2013-03-13 13:04:33 +00:00
2013-02-06 12:15:12 +00:00
src = fetchurl {
url = "mirror://savannah/lzip/${pname}-${version}.tar.gz";
sha256 = "12qdcw5k1cx77brv9yxi1h4dzwibhfmdpigrj43nfk8nscwm12z4";
2013-02-06 12:15:12 +00:00
};
configureFlags = [
"CPPFLAGS=-DNDEBUG"
"CFLAGS=-O3"
"CXXFLAGS=-O3"
2021-01-15 09:19:50 +00:00
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
"CXX=${stdenv.cc.targetPrefix}c++";
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
meta = {
homepage = "https://www.nongnu.org/lzip/lzip.html";
description = "A lossless data compressor based on the LZMA algorithm";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.all;
2013-02-06 12:15:12 +00:00
};
}