nixpkgs/pkgs/tools/networking/wget/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

12 lines
240 B
Nix

{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];
}