lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v192 20 lines 532 B view raw
1{stdenv, fetchurl, zlib, lzo, bzip2, nasm, perl}: 2 3stdenv.mkDerivation rec { 4 version = "0.621"; 5 name = "lrzip-${version}"; 6 7 src = fetchurl { 8 url = "http://ck.kolivas.org/apps/lrzip/${name}.tar.bz2"; 9 sha256 = "0szb1habydj9fwwrhgpjfws6v7hdphnqc5527i0vvc5rx2z6zhii"; 10 }; 11 12 buildInputs = [ zlib lzo bzip2 nasm perl ]; 13 14 meta = { 15 homepage = http://ck.kolivas.org/apps/lrzip/; 16 description = "The CK LRZIP compression program (LZMA + RZIP)"; 17 license = stdenv.lib.licenses.gpl2Plus; 18 inherit version; 19 }; 20}