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
10 lines
295 B
Nix
10 lines
295 B
Nix
# Use the static tools for i686-linux. They work on x86_64-linux
|
|
# machines as well.
|
|
(import ../i686) //
|
|
|
|
{
|
|
bootstrapTools = {
|
|
url = http://nixos.org/tarballs/stdenv-linux/x86_64/r13932/bootstrap-tools.cpio.bz2;
|
|
sha256 = "135lx2945cxf43g9n39dxcamw6f6n8qp5iqbh4xma575rf2bx5js";
|
|
};
|
|
} |