summary refs log tree commit diff
path: root/pkgs/development/compilers/rust/bootstrap.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-12-02 14:46:33 +0200
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-12-02 14:46:33 +0200
commit491e5d8649e8587654a81baf119e3b66bce65102 (patch)
treedb66ecc86238c4cd9508a8b3d88f9772ac1f2101 /pkgs/development/compilers/rust/bootstrap.nix
parent94b7925b30e4b3162401791e2118dd8e45821fb4 (diff)
downloadnixpkgs-491e5d8649e8587654a81baf119e3b66bce65102.tar
nixpkgs-491e5d8649e8587654a81baf119e3b66bce65102.tar.gz
nixpkgs-491e5d8649e8587654a81baf119e3b66bce65102.tar.bz2
nixpkgs-491e5d8649e8587654a81baf119e3b66bce65102.tar.lz
nixpkgs-491e5d8649e8587654a81baf119e3b66bce65102.tar.xz
nixpkgs-491e5d8649e8587654a81baf119e3b66bce65102.tar.zst
nixpkgs-491e5d8649e8587654a81baf119e3b66bce65102.zip
rustc: Support aarch64
Diffstat (limited to 'pkgs/development/compilers/rust/bootstrap.nix')
-rw-r--r--pkgs/development/compilers/rust/bootstrap.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/compilers/rust/bootstrap.nix b/pkgs/development/compilers/rust/bootstrap.nix
index da9680943b5..a707fe2e69e 100644
--- a/pkgs/development/compilers/rust/bootstrap.nix
+++ b/pkgs/development/compilers/rust/bootstrap.nix
@@ -9,6 +9,7 @@ let
   hashes = {
     i686-unknown-linux-gnu = "abe592e06616cdc2fcca56ddbe482050dd49a1fada35e2af031c64fe6eb14668";
     x86_64-unknown-linux-gnu = "ca1cf3aed73ff03d065a7d3e57ecca92228d35dc36d9274a6597441319f18eb8";
+    aarch64-unknown-linux-gnu = "eaab3df489d4d8f976c4327d812b9870730eed6d0bbd52712767083d02be7472";
     i686-apple-darwin = "b3c2470f8f132d285e6c989681e251592b67071bc9d93cac8a2e6b66f7bdfcb5";
     x86_64-apple-darwin = "fa1fb8896d5e327cbe6deeb50e6e9a3346de629f2e6bcbd8c10f19f3e2ed67d5";
   };
@@ -18,6 +19,8 @@ let
     then "i686-unknown-linux-gnu"
     else if stdenv.system == "x86_64-linux"
     then "x86_64-unknown-linux-gnu"
+    else if stdenv.system == "aarch64-linux"
+    then "aarch64-unknown-linux-gnu"
     else if stdenv.system == "i686-darwin"
     then "i686-apple-darwin"
     else if stdenv.system == "x86_64-darwin"