add statically linked wget, by just overriding the compiler. Sweeeeet :)

svn path=/nixpkgs/trunk/; revision=5998
This commit is contained in:
Armijn Hemel 2006-07-30 22:29:04 +00:00
parent 5b2f05bcb8
commit 3e38e12467

View File

@ -260,6 +260,11 @@ rec {
inherit fetchurl stdenv gettext;
};
wgetDiet = (import ../tools/networking/wget) {
inherit fetchurl gettext;
stdenv = overrideGCC stdenv dietgcc;
};
curl = if stdenv ? curl then stdenv.curl else (assert false; null);
realCurl = (import ../tools/networking/curl) {