mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
20d9edff17
Hopefully fixes sandboxed build of glibc on aarch64, as discussed on8bfa9f528c
. Picked from the following cross-trunk evaluation: http://hydra.nixos.org/eval/1341395 based on nixpkgs commitbb3ef8a95c
. build job: http://hydra.nixos.org/build/50125932 (busybox's hash not changing is not a bug!)
12 lines
441 B
Nix
12 lines
441 B
Nix
{
|
|
busybox = import <nix/fetchurl.nix> {
|
|
url = http://nixos-arm.dezgeg.me/bootstrap-aarch64-2017-03-11-bb3ef8/busybox;
|
|
sha256 = "12qcml1l67skpjhfjwy7gr10nc86gqcwjmz9ggp7knss8gq8pv7f";
|
|
executable = true;
|
|
};
|
|
bootstrapTools = import <nix/fetchurl.nix> {
|
|
url = http://nixos-arm.dezgeg.me/bootstrap-aarch64-2017-03-11-bb3ef8/bootstrap-tools.tar.xz;
|
|
sha256 = "1075d5n4yclbhgisi6ba50601mw3fhivlkjs462qlnq8hh0xc7nq";
|
|
};
|
|
}
|