779b4b2448
* Updated stdenv-linux: - The bootstrap tools are no longer statically linked (except for binaries in the Nixpkgs tree used to download and unpack the bootstrap tools). - x86_64 uses the same static binaries as i686. This makes the Nixpkgs tree a bit smaller. - Use the Linux 2.6.28 headers. svn path=/nixpkgs/branches/stdenv-updates/; revision=13946
14 lines
289 B
Nix
14 lines
289 B
Nix
{
|
|
sh = ./sh;
|
|
bzip2 = ./bzip2;
|
|
mkdir = ./mkdir;
|
|
cpio = ./cpio;
|
|
ln = ./ln;
|
|
curl = ./curl.bz2;
|
|
|
|
bootstrapTools = {
|
|
url = http://nixos.org/tarballs/stdenv-linux/i686/r13932/bootstrap-tools.cpio.bz2;
|
|
sha256 = "12z35wnpcbjwczsr9fldp6bjpz7wh5qwylw6xfrr9l4s7gmk3m8a";
|
|
};
|
|
}
|