diff options
author | Christopher Baines <mail@cbaines.net> | 2021-03-09 08:52:09 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2021-03-09 09:04:57 +0000 |
commit | a72888995173ace3190c69d324265dcc5fd66d3e (patch) | |
tree | 268f3b2cecd92794a4c823645a6f81e3f0b7e829 /gnu/packages | |
parent | d099c9c09b9a17fba556715568ab910d6af14ee8 (diff) | |
download | guix-a72888995173ace3190c69d324265dcc5fd66d3e.tar guix-a72888995173ace3190c69d324265dcc5fd66d3e.tar.gz |
gnu: rust-1.26: Remove aarch64-linux from the supported systems.
Because this package is a transitive input to many rust packages, Cuirass is
spending lots of time failing to build it on ci.guix.gnu.org. This change will
hopefully help with that issue.
* gnu/packages/rust.scm (rust-1.26)[supported-systems]: Remove aarch64-linux.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/rust.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index 1fc540f0f8..c7840e1a20 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -822,7 +822,10 @@ jemalloc = \"" jemalloc "/lib/libjemalloc_pic.a" "\" (substitute* "src/tools/cargo/tests/testsuite/generate_lockfile.rs" ;; This test wants to update the crate index. (("fn no_index_update") "#[ignore]\nfn no_index_update")) - #t))))))))) + #t)))))) + (supported-systems + (delete "aarch64-linux" ; fails to build, see #47019 + (package-supported-systems base-rust)))))) (define-public rust-1.27 (let ((base-rust |