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

33 lines
808 B
Nix
Raw Normal View History

2013-03-13 13:04:33 +00:00
{ stdenv, fetchurl, texinfo }:
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"
] ++ stdenv.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 = {
2018-12-01 17:32:32 +00:00
homepage = https://www.nongnu.org/lzip/lzip.html;
description = "A lossless data compressor based on the LZMA algorithm";
2013-02-06 12:15:12 +00:00
license = stdenv.lib.licenses.gpl3Plus;
2018-07-20 17:48:42 +00:00
platforms = stdenv.lib.platforms.all;
2013-02-06 12:15:12 +00:00
};
}