Archived
1
0
Fork 0

gnu: rust-lazy-static-1.3: Skip build.

* gnu/packages/crates-io.scm (rust-lazy-static-1.3)[arguments]: Skip
build. Add rust-spin-0.5 to cargo-inputs.
[properties]: Remove field.
This commit is contained in:
Efraim Flashner 2020-01-02 17:35:35 +02:00
parent 36dfd43dc3
commit 7072c72d1f
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -4774,6 +4774,9 @@ language tags.")
(base32
"052ac27w189hrf1j3hz7sga46rp84zl2hqnzyihxv78mgzr2jmxw"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-spin" ,rust-spin-0.5))))
(home-page "https://github.com/rust-lang-nursery/lazy-static.rs")
(synopsis "Macro for declaring lazily evaluated statics in Rust")
(description
@ -4782,7 +4785,6 @@ Rust. Using this macro, it is possible to have @code{static}s that require code
to be executed at runtime in order to be initialized. This includes anything
requiring heap allocations, like vectors or hash maps, as well as anything that
requires non-const function calls to be computed.")
(properties '((hidden? . #t)))
(license (list license:asl2.0
license:expat))))