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:
parent
36dfd43dc3
commit
7072c72d1f
1 changed files with 3 additions and 1 deletions
|
@ -4774,6 +4774,9 @@ language tags.")
|
||||||
(base32
|
(base32
|
||||||
"052ac27w189hrf1j3hz7sga46rp84zl2hqnzyihxv78mgzr2jmxw"))))
|
"052ac27w189hrf1j3hz7sga46rp84zl2hqnzyihxv78mgzr2jmxw"))))
|
||||||
(build-system cargo-build-system)
|
(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")
|
(home-page "https://github.com/rust-lang-nursery/lazy-static.rs")
|
||||||
(synopsis "Macro for declaring lazily evaluated statics in Rust")
|
(synopsis "Macro for declaring lazily evaluated statics in Rust")
|
||||||
(description
|
(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
|
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
|
requiring heap allocations, like vectors or hash maps, as well as anything that
|
||||||
requires non-const function calls to be computed.")
|
requires non-const function calls to be computed.")
|
||||||
(properties '((hidden? . #t)))
|
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
|
Reference in a new issue