Adding lrzip and rzip.

svn path=/nixpkgs/trunk/; revision=14581
This commit is contained in:
Lluís Batlle i Rossell
2009-03-17 21:17:51 +00:00
parent 1dada801c7
commit 7fd91b8736
3 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{stdenv, fetchurl, bzip2}:
stdenv.mkDerivation {
name = "rzip-2.1";
src = fetchurl {
url = http://rzip.samba.org/ftp/rzip/rzip-2.1.tar.gz;
sha256 = "4bb96f4d58ccf16749ed3f836957ce97dbcff3e3ee5fd50266229a48f89815b7";
};
buildInputs = [ bzip2 ];
meta = {
homepage = http://rzip.samba.org/;
description = "The RZIP compression program";
license = "GPLv2+";
};
}