update wget to 1.10.2, has extra gettext dependency

svn path=/nixpkgs/trunk/; revision=5471
This commit is contained in:
Armijn Hemel 2006-06-18 16:01:28 +00:00
parent 26a7fe945a
commit e738411d7c
2 changed files with 7 additions and 5 deletions

View file

@ -1,9 +1,11 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, gettext}:
stdenv.mkDerivation {
name = "wget-1.9.1";
name = "wget-1.10.2";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/wget-1.9.1.tar.gz;
md5 = "e6051f1e1487ec0ebfdbda72bedc70ad";
url = ftp://ftp.nluug.nl/pub/gnu/wget/wget-1.10.2.tar.gz;
md5 = "795fefbb7099f93e2d346b026785c4b8";
};
buildInputs = [gettext];
}

View file

@ -242,7 +242,7 @@ rec {
};
wget = (import ../tools/networking/wget) {
inherit fetchurl stdenv;
inherit fetchurl stdenv gettext;
};
curl = if stdenv ? curl then stdenv.curl else (assert false; null);