about summary refs log tree commit diff
path: root/pkgs/tools/networking/wget/default.nix
blob: 27428595dbc9a01160b50eaae63d23d2cec5bffb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl, gettext}:

stdenv.mkDerivation {
  name = "wget-1.10.2";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/wget-1.10.2.tar.gz;
    md5 = "795fefbb7099f93e2d346b026785c4b8";
  };

  buildInputs = [gettext];

  meta = {
    description = "A console downloading program. Has some features for mirroring sites.";
  };
}