mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add rust-scheduled-thread-pool-0.2.
* gnu/packages/crates-io.scm (rust-scheduled-thread-pool-0.2): New variable.
This commit is contained in:
parent
32cd33bf76
commit
7f4b985f06
1 changed files with 21 additions and 0 deletions
|
@ -22779,6 +22779,27 @@ (define-public rust-schannel-0.1
|
|||
server functionality.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-scheduled-thread-pool-0.2
|
||||
(package
|
||||
(name "rust-scheduled-thread-pool")
|
||||
(version "0.2.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "scheduled-thread-pool" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1mz7s21q1d7xn9j15dlhhv1y86q2r2z6hpax5nh3y1q42byp8vyw"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-parking-lot" ,rust-parking-lot-0.11))))
|
||||
(home-page "https://github.com/sfackler/scheduled-thread-pool")
|
||||
(synopsis "A scheduled thread pool")
|
||||
(description "This package provides a scheduled thread pool.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-scoped-threadpool-0.1
|
||||
(package
|
||||
(name "rust-scoped-threadpool")
|
||||
|
|
Loading…
Reference in a new issue