* dietlibc / static stdenvs: use original fetchurl.

svn path=/nixpkgs/trunk/; revision=11996
This commit is contained in:
Eelco Dolstra 2008-06-06 08:01:26 +00:00
parent 7ed0f3983d
commit dfb4b8d51c

View File

@ -101,7 +101,7 @@ let pkgs = rec {
}; };
}); });
isDietLibC = true; isDietLibC = true;
}; } // {inherit fetchurl;};
# Return a modified stdenv that tries to build statically linked # Return a modified stdenv that tries to build statically linked
# binaries. # binaries.
@ -114,7 +114,7 @@ let pkgs = rec {
+ " --disable-shared"; # brrr... + " --disable-shared"; # brrr...
}); });
isStatic = true; isStatic = true;
}; } // {inherit fetchurl;};
# Applying this to an attribute set will cause nix-env to look # Applying this to an attribute set will cause nix-env to look
# inside the set for derivations. # inside the set for derivations.