3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add rust-threadpool.

* gnu/packages/crates-io.scm (rust-threadpool): New variable.
This commit is contained in:
Efraim Flashner 2019-08-28 16:37:50 +03:00
parent d154192fa9
commit de72b804f1
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1560,6 +1560,30 @@ return values to @code{std::io::Result} to indicate success or failure.")
(license (list license:asl2.0
license:expat))))
(define-public rust-threadpool
(package
(name "rust-threadpool")
(version "1.7.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "threadpool" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0rd89n1q7vy47w4c32cnynibffv9kj3jy3dwr0536n9lbw5ckw72"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-num-cpus" ,rust-num-cpus))))
(home-page "https://github.com/rust-threadpool/rust-threadpool")
(synopsis "Thread pool for running jobs on a fixed set of worker threads")
(description
"This package provides a thread pool for running a number of jobs on a
fixed set of worker threads.")
(license (list license:asl2.0
license:expat))))
(define-public rust-typenum
(package
(name "rust-typenum")