3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/compression/lzip/default.nix

28 lines
749 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 {
2017-03-03 02:37:01 +00:00
name = "lzip-${version}";
version = "1.20";
2013-02-06 12:15:12 +00:00
2013-03-13 13:04:33 +00:00
buildInputs = [ texinfo ];
2013-02-06 12:15:12 +00:00
src = fetchurl {
url = "mirror://savannah/lzip/${name}.tar.gz";
sha256 = "0319q59kb8g324wnj7xzbr7vvlx5bcs13lr34j0zb3kqlyjq2fy9";
2013-02-06 12:15:12 +00:00
};
2018-02-25 14:46:49 +00:00
configureFlags = "CPPFLAGS=-DNDEBUG CFLAGS=-O3 CXXFLAGS=-O3" + stdenv.lib.optionalString stdenv.isCross " 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 = http://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;
platforms = stdenv.lib.platforms.unix;
};
}