* Bootstrap tools for the pure stdenv-linux on powerpc-linux.

svn path=/nixpkgs/trunk/; revision=6860
This commit is contained in:
Eelco Dolstra 2006-10-26 20:07:49 +00:00
parent 45bf677dcc
commit 43fb5626d6
7 changed files with 28 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,27 @@
{
bash = ./bash;
bunzip2 = ./bunzip2;
cp = ./cp;
curl = ./curl.bz2;
tar = ./tar.bz2;
staticToolsURL = {
url = file:///tmp/tarballs/static-tools.tar.bz2;
sha1 = "90ec30bbdac515e03c90b0909ee09a4cdcfe5214";
};
binutilsURL = {
url = file:///tmp/tarballs/binutils.tar.bz2;
sha1 = "577b256dcb5297a001acb8b49ce36e9c78ff8fc8";
};
gccURL = {
url = file:///tmp/tarballs/gcc.tar.bz2;
sha1 = "853d570c3419bddcf18d4340722880d2a80e2a3f";
};
glibcURL = {
url = file:///tmp/tarballs/glibc.tar.bz2;
sha1 = "d34e78fb4a0aa282318b1465e195bc2d4e6e7315";
};
}

Binary file not shown.

View File

@ -11,6 +11,7 @@ rec {
bootstrapTools = bootstrapTools =
if system == "i686-linux" then import ./bootstrap/i686 if system == "i686-linux" then import ./bootstrap/i686
else if system == "x86_64-linux" then import ./bootstrap/x86_64 else if system == "x86_64-linux" then import ./bootstrap/x86_64
else if system == "powerpc-linux" then import ./bootstrap/powerpc
else abort "unsupported platform for the pure Linux stdenv"; else abort "unsupported platform for the pure Linux stdenv";