Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
Include aarch64-linux toolchain.
Browse files Browse the repository at this point in the history
Stored in LFS.

NOTE: Toolchain built as part of:
- #10 (comment)
  • Loading branch information
koxu1996 committed Feb 7, 2024
1 parent 11209ab commit a254a51
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.tar.gz filter=lfs diff=lfs merge=lfs -text
7 changes: 7 additions & 0 deletions pkgs/rustc0/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,13 @@ stdenv.mkDerivation rec {
url = "https://github.com/risc0/rust/releases/download/test-release-2/rust-toolchain-aarch64-apple-darwin.tar.gz";
sha256 = "sha256:0vvf6j14vm9n3kb39m0xdzfc7fdycwr3iqzlnyy7razgi3i5vk9l";
}
else if stdenv.hostPlatform.system == "aarch64-linux"
then
builtins.fetchurl
{
url = "file://./rust-toolchain-aarch64-unknown-linux-gnu.tar.gz";
sha256 = "sha256:d9c6a874994adc3dbd5af275d0a4a4672792c099a8bc6358406da0073dc95297";
}
else
builtins.abort "Toolchain not available.";

Expand Down
3 changes: 3 additions & 0 deletions pkgs/rustc0/rust-toolchain-aarch64-unknown-linux-gnu.tar.gz
Git LFS file not shown

0 comments on commit a254a51

Please sign in to comment.