summary refs log tree commit diff
path: root/pkgs/tools/compression/rzip/default.nix
blob: ca8d356abb3eab878439a89938afdf1ce340b6a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 = stdenv.lib.licenses.gpl2Plus;
  };
}