aboutsummaryrefslogtreecommitdiff
path: root/pkgs/stdenv/linux
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-01-03 16:56:43 +0100
committerLuka Blaskovic <lblasc@tvbeat.com>2020-01-14 08:52:25 +0000
commit2d36eac7801824d5b6d7cc43958b9733e5901109 (patch)
tree0e972ca81621773a5477de9d04585ed2fb12f3c2 /pkgs/stdenv/linux
parent2476d6decabf1be63151dd94be15e87fad52fb0b (diff)
stdenv: rebuild aarch64 bootstrap files with gcc8
The old bootstrapping files would break with glibc 2.30 as at least gcc6 is needed.
Diffstat (limited to 'pkgs/stdenv/linux')
-rw-r--r--pkgs/stdenv/linux/bootstrap-files/aarch64.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/stdenv/linux/bootstrap-files/aarch64.nix b/pkgs/stdenv/linux/bootstrap-files/aarch64.nix
index ca7e84502ab3..90c74bf1723f 100644
--- a/pkgs/stdenv/linux/bootstrap-files/aarch64.nix
+++ b/pkgs/stdenv/linux/bootstrap-files/aarch64.nix
@@ -1,11 +1,13 @@
+# FIXME(ma27): before merging this to master we *have* to replace those files
+# as they're built for testing purposes with the aarch64 community builder.
{
busybox = import <nix/fetchurl.nix> {
- url = http://nixos-arm.dezgeg.me/bootstrap-aarch64-2017-03-11-bb3ef8/busybox;
- sha256 = "12qcml1l67skpjhfjwy7gr10nc86gqcwjmz9ggp7knss8gq8pv7f";
+ url = "https://aarch64.mbosch.me/busybox";
+ sha256 = "10z8aigcj0lyfwbc4wzl7s0ng9g37sx1vsqh9sijw3hi0gfhhn4v";
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";
+ url = "https://aarch64.mbosch.me/bootstrap-tools.tar.xz";
+ sha256 = "0n4k0l7j2yqjzicj1gyk8gdpbszqn6yj6mlx6m2pzfcm2hmbzwfk";
};
}