me
/
guix
Archived
1
0
Fork 0

gnu: rust-compiler-builtins-0.1: Don't hide package.

* gnu/packages/crates-io.scm (rust-compiler-builtins-0.1)[arguments]:
Skip build. Add rust-rustc-std-workspace-core-1.0 to cargo-inputs. Add
rust-cc-1.0 to cargo-development-inputs.
[home-page]: Update to new home-page.
[properties]: Remove field.
master
Efraim Flashner 2020-01-14 12:49:35 +02:00
parent bda28cc422
commit 52300efe4f
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 2 deletions

View File

@ -1402,13 +1402,18 @@ CMAKE environmental variable is set.")
(base32 (base32
"1fpabpmg8paj4r5a37vmidh1jx1b7a6ilxm4s3xsxczx27ybjcjf")))) "1fpabpmg8paj4r5a37vmidh1jx1b7a6ilxm4s3xsxczx27ybjcjf"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(home-page "https://github.com/rust-lang-nursery/compiler-builtins") (arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1.0))
#:cargo-development-inputs
(("rust-cc" ,rust-cc-1.0))))
(home-page "https://github.com/rust-lang/compiler-builtins")
(synopsis "Compiler intrinsics used by the Rust compiler") (synopsis "Compiler intrinsics used by the Rust compiler")
(description (description
"This package provides compiler intrinsics used by the Rust compiler. This "This package provides compiler intrinsics used by the Rust compiler. This
package is primarily useful when building the @code{core} crate yourself and you package is primarily useful when building the @code{core} crate yourself and you
need compiler-rt intrinsics.") need compiler-rt intrinsics.")
(properties '((hidden? . #t)))
(license (list license:asl2.0 (license (list license:asl2.0
license:expat)))) license:expat))))