summary refs log tree commit diff
path: root/pkgs/tools/compression/gzip/default.nix
blob: a89a202aaacb9e2e7158984d213c0ca8d9f6a257 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "gzip-1.3.9";
  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/gnu/gzip/gzip-1.3.9.tar.gz;
    md5 = "7cf923b24b718c418e85a283b2260e14";
  };
  postInstall = "ln -sf gzip $out/bin/gunzip; ln -sf gzip $out/bin/zcat";
}