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

24 lines
576 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 {
2016-04-12 21:49:33 +00:00
name = "lzip-1.17";
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";
2016-04-12 21:49:33 +00:00
sha256 = "0lh3x964jjldx3piax6c2qzlhfiir5i6rnrcn8ri44rk19g8ahwl";
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";
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.unix;
};
}