* Updated bootstrap binaries except for bash which now somehow

segfaults totally randomly.

svn path=/nixpkgs/branches/stdenv-updates/; revision=9840
This commit is contained in:
Eelco Dolstra
2007-12-03 17:56:44 +00:00
parent ff95bc3eea
commit f516036cbb
15 changed files with 26 additions and 26 deletions
+2 -2
View File
@@ -27,7 +27,7 @@ rec {
inherit system;
name = "curl";
builder = bootstrapTools.bash;
inherit (bootstrapTools) bunzip2 cp curl;
inherit (bootstrapTools) bzip2 cp curl;
args = [ ./scripts/unpack-curl.sh ];
};
@@ -45,7 +45,7 @@ rec {
downloadAndUnpack = pkgname: {url, sha1}: derivation {
name = pkgname;
builder = bootstrapTools.bash;
inherit (bootstrapTools) bunzip2 tar cp;
inherit (bootstrapTools) bzip2 tar cp;
args = [ ./scripts/unpack.sh ];
tarball = download {inherit url sha1 pkgname;};
inherit system;