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

derivation {
  name = "gzip-1.3.3";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.gzip.org/gzip-1.3.3.tar.gz;
    md5 = "52eaf713673507d21f7abefee98ba662";
  };
  inherit stdenv;
}