mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
gnu: rust-scoped-threadpool-0.1: Don't hide package.
* gnu/packages/crates-io.scm (rust-scoped-threadpool-0.1)[arguments]: Skip build. Add rust-lazy-static-1.3 to cargo-development-inputs. [synopsis]: Appease 'guix lint'. [description]: Appease 'guix lint'. [properties]: Remove field.
This commit is contained in:
parent
98e5e7305a
commit
ff7173ebae
1 changed files with 6 additions and 3 deletions
|
@ -8610,16 +8610,19 @@ (define-public rust-scoped-threadpool-0.1
|
||||||
(base32
|
(base32
|
||||||
"1a26d3lk40s9mrf4imhbik7caahmw2jryhhb6vqv6fplbbgzal8x"))))
|
"1a26d3lk40s9mrf4imhbik7caahmw2jryhhb6vqv6fplbbgzal8x"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-lazy-static" ,rust-lazy-static-1.3))))
|
||||||
(home-page "https://github.com/Kimundi/scoped-threadpool-rs")
|
(home-page "https://github.com/Kimundi/scoped-threadpool-rs")
|
||||||
(synopsis "library for scoped and cached threadpools")
|
(synopsis "Library for scoped and cached threadpools")
|
||||||
(description
|
(description
|
||||||
"This crate provides a stable, safe and scoped threadpool. It can be used
|
"This crate provides a stable, safe and scoped threadpool. It can be used
|
||||||
to execute a number of short-lived jobs in parallel without the need to respawn
|
to execute a number of short-lived jobs in parallel without the need to respawn
|
||||||
the underlying threads. Jobs are runnable by borrowing the pool for a given
|
the underlying threads. Jobs are runnable by borrowing the pool for a given
|
||||||
scope, during which an arbitrary number of them can be executed. These jobs can
|
scope, during which an arbitrary number of them can be executed. These jobs can
|
||||||
access data of any lifetime outside of the pools scope, which allows working on
|
access data of any lifetime outside of the pools scope, which allows working on
|
||||||
non-'static references in parallel.")
|
non-'static references in parallel.")
|
||||||
(properties '((hidden? . #t)))
|
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue