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

25 lines
600 B
Nix
Raw Normal View History

2013-03-13 14:04:33 +01:00
{ stdenv, fetchurl, texinfo }:
2013-02-06 13:15:12 +01:00
stdenv.mkDerivation rec {
2017-03-03 03:37:01 +01:00
name = "lzip-${version}";
2017-05-10 18:29:07 +02:00
version = "1.19";
2013-02-06 13:15:12 +01:00
2013-03-13 14:04:33 +01:00
buildInputs = [ texinfo ];
2013-02-06 13:15:12 +01:00
src = fetchurl {
url = "mirror://savannah/lzip/${name}.tar.gz";
2017-05-10 18:29:07 +02:00
sha256 = "1abbch762gv8rjr579q3qyyk6c80plklbv2mw4x0vg71dgsw9bgz";
2013-02-06 13:15:12 +01:00
};
configureFlags = "CPPFLAGS=-DNDEBUG CFLAGS=-O3 CXXFLAGS=-O3";
2013-02-06 13:15:12 +01:00
doCheck = true;
meta = {
homepage = http://www.nongnu.org/lzip/lzip.html;
description = "A lossless data compressor based on the LZMA algorithm";
2013-02-06 13:15:12 +01:00
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.unix;
};
}