at 16.09-beta 23 lines 576 B view raw
1{ stdenv, fetchurl, texinfo }: 2 3stdenv.mkDerivation rec { 4 name = "lzip-1.17"; 5 6 buildInputs = [ texinfo ]; 7 8 src = fetchurl { 9 url = "mirror://savannah/lzip/${name}.tar.gz"; 10 sha256 = "0lh3x964jjldx3piax6c2qzlhfiir5i6rnrcn8ri44rk19g8ahwl"; 11 }; 12 13 configureFlags = "CPPFLAGS=-DNDEBUG CFLAGS=-O3 CXXFLAGS=-O3"; 14 15 doCheck = true; 16 17 meta = { 18 homepage = "http://www.nongnu.org/lzip/lzip.html"; 19 description = "A lossless data compressor based on the LZMA algorithm"; 20 license = stdenv.lib.licenses.gpl3Plus; 21 platforms = stdenv.lib.platforms.unix; 22 }; 23}