gnu: rust: Make it "supported" on all systems but i686-linux.

* gnu/packages/rust.scm (rust-1.30)[supported-systems]: Instead of hard-coding
this to just "x86_64-linux", calculate the supported systems by deleting
"i686-linux" from %supported-systems.
This commit is contained in:
Chris Marusich 2021-03-07 15:58:19 -08:00
parent 5d2863dfe4
commit 001fc29b43
No known key found for this signature in database
GPG key ID: DD409A15D822469D

View file

@ -448,7 +448,9 @@ (define rust-1.30
(search-path-specification
(variable "LIBRARY_PATH")
(files '("lib" "lib64")))))
(supported-systems '("x86_64-linux"))
(supported-systems
(delete "i686-linux" ; fails to build, see bug #35519
%supported-systems))
(synopsis "Compiler for the Rust progamming language")
(description "Rust is a systems programming language that provides memory
safety and thread safety guarantees.")