me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-scheduled-thread-pool-0.2.

* gnu/packages/crates-io.scm (rust-scheduled-thread-pool-0.2): New variable.
master
Arun Isaac 2020-09-21 00:06:07 +05:30
parent 32cd33bf76
commit 7f4b985f06
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 21 additions and 0 deletions

View File

@ -22779,6 +22779,27 @@ paths point to the same file.")
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")