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

25 lines
600 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}";
2017-05-10 17:29:07 +01:00
version = "1.19";
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";
2017-05-10 17:29:07 +01:00
sha256 = "1abbch762gv8rjr579q3qyyk6c80plklbv2mw4x0vg71dgsw9bgz";
2013-02-06 12:15:12 +00:00
};
configureFlags = "CPPFLAGS=-DNDEBUG CFLAGS=-O3 CXXFLAGS=-O3";
2013-02-06 12:15:12 +00: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 12:15:12 +00:00
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.unix;
};
}