diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-04-29 23:20:23 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-04-29 23:22:30 +0300 |
commit | 8fe5ed47cbbb6ae6ed00afa8d8b4f04e216d5adc (patch) | |
tree | b835e1de06ccac7e979129a5352e852226f1754e /gnu/packages/gnome.scm | |
parent | 8b660997223310e2e62addb00a407613d2adbf65 (diff) | |
download | guix-8fe5ed47cbbb6ae6ed00afa8d8b4f04e216d5adc.tar guix-8fe5ed47cbbb6ae6ed00afa8d8b4f04e216d5adc.tar.gz |
gnu: rust: Disable support for aarch64-linux, riscv64-linux.
Support is currently broken and blocks too many other packages.
* gnu/packages/gnome.scm (librsvg-for-system): Only use librsvg on
x86_64-linux.
* gnu/packages/rust.scm (rust-bootstrap)[supported-systems]: Remove
aarch64-linux, riscv64-linux.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 7aa7180f5e..29d75e2894 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3671,10 +3671,9 @@ diagrams.") (system (or (%current-target-system) (%current-system)))) ;; Since librsvg 2.50 depends on Rust, and Rust is only correctly supported - ;; on x86_64 and aarch64 so far, use the ancient C version on other + ;; on x86_64, aarch64 and riscv64 so far, use the ancient C version on other ;; platforms (FIXME). - (if (or (string-prefix? "x86_64-" system) - (string-prefix? "aarch64-" system)) + (if (string-prefix? "x86_64-" system) librsvg librsvg-2.40)) |