diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-01-20 22:21:13 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-01-21 16:24:00 +0200 |
commit | 0f414f0da94f5199fc4f7dc93d7adc22b938ac74 (patch) | |
tree | a0ada993feef107cfc43f51322d9193a9098b544 | |
parent | 27b75426c50078574d1d41fa0e24e992fe7ae869 (diff) | |
download | patches-0f414f0da94f5199fc4f7dc93d7adc22b938ac74.tar patches-0f414f0da94f5199fc4f7dc93d7adc22b938ac74.tar.gz |
gnu: rust-thread-local-1.0: Don't hide package.
* gnu/packages/crates-io.scm (rust-thread-local-1.0)[arguments]: Skip
build. Add rust-lazy-static-1.4 to cargo-inputs.
[properties]: Remove field.
-rw-r--r-- | gnu/packages/crates-io.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index e7d377de3a..e70b869ea4 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -11426,10 +11426,12 @@ different for every thread.") (base32 "054vlrr1vsdy1h4b7n99mr24pnj8928ig9qwzg36wnkld4dns36l")))) (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs (("rust-lazy-static" ,rust-lazy-static-1.4)))) (home-page "https://github.com/Amanieu/thread_local-rs") (synopsis "Per-object thread-local storage") - (description "Per-object thread-local storage") - (properties '((hidden? . #t))) + (description "Per-object thread-local storage.") (license (list license:asl2.0 license:expat)))) @@ -11448,8 +11450,7 @@ different for every thread.") "06rzik99p8c5js8238yhc8rk6np543ylb1dy9nrw5v80j0r3xdf6")))) (arguments `(#:skip-build? #t - #:cargo-inputs (("rust-lazy-static" ,rust-lazy-static-1.4)))) - (properties '()))) + #:cargo-inputs (("rust-lazy-static" ,rust-lazy-static-1.4)))))) (define-public rust-threadpool-1.7 (package |