summary refs log tree commit diff
path: root/pkgs/tools/networking/wget/default.fix
blob: d0b7d01c1de8078766182b77a70682b6cd949b38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}: derivation {
  name = "wget-1.9";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/gnu/wget/wget-1.9.tar.gz;
    md5 = "18ac093db70801b210152dd69b4ef08a";
  };
  stdenv = stdenv;
}