update wget to 1.10.2, has extra gettext dependency
svn path=/nixpkgs/trunk/; revision=5471
This commit is contained in:
parent
26a7fe945a
commit
e738411d7c
2 changed files with 7 additions and 5 deletions
|
@ -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];
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue