summary refs log tree commit diff
path: root/pkgs/stdenv/linux/bootstrap-files
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2017-01-24 01:35:05 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2017-01-25 00:01:53 +0200
commit5c0a385e1cafb369529bb304ff8600c1f44b3fc3 (patch)
tree124666dc52c8aa05cfc1e82774f87650e2e6f1f4 /pkgs/stdenv/linux/bootstrap-files
parentbfff3d6e23c02186043b9c8ce4dc2131b803dbac (diff)
downloadnixpkgs-5c0a385e1cafb369529bb304ff8600c1f44b3fc3.tar
nixpkgs-5c0a385e1cafb369529bb304ff8600c1f44b3fc3.tar.gz
nixpkgs-5c0a385e1cafb369529bb304ff8600c1f44b3fc3.tar.bz2
nixpkgs-5c0a385e1cafb369529bb304ff8600c1f44b3fc3.tar.lz
nixpkgs-5c0a385e1cafb369529bb304ff8600c1f44b3fc3.tar.xz
nixpkgs-5c0a385e1cafb369529bb304ff8600c1f44b3fc3.tar.zst
nixpkgs-5c0a385e1cafb369529bb304ff8600c1f44b3fc3.zip
stdenv: Add aarch64 bootstrap files
These are temporary and will be switched to Hydra-build ones once all
the aarch4 changs are merged.
Diffstat (limited to 'pkgs/stdenv/linux/bootstrap-files')
-rw-r--r--pkgs/stdenv/linux/bootstrap-files/aarch64.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/stdenv/linux/bootstrap-files/aarch64.nix b/pkgs/stdenv/linux/bootstrap-files/aarch64.nix
new file mode 100644
index 00000000000..7f1acc83433
--- /dev/null
+++ b/pkgs/stdenv/linux/bootstrap-files/aarch64.nix
@@ -0,0 +1,11 @@
+{
+  busybox = import <nix/fetchurl.nix> {
+    url = http://nixos-arm.dezgeg.me/bootstrap-aarch64-for-merge/busybox;
+    sha256 = "12qcml1l67skpjhfjwy7gr10nc86gqcwjmz9ggp7knss8gq8pv7f";
+    executable = true;
+  };
+  bootstrapTools = import <nix/fetchurl.nix> {
+    url = http://nixos-arm.dezgeg.me/bootstrap-aarch64-for-merge/bootstrap-tools.tar.xz;
+    sha256 = "10sqgh0dchp1906h06jznxh8gfflnzbpfy27hng2mmc1l0c7irjr";
+  };
+}