mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 04:07:10 -05:00
gnu: Add rust-parking-2.
* gnu/packages/crates-io.scm (rust-parking-2): New variable.
This commit is contained in:
parent
b5d659110c
commit
ed7959b7e4
1 changed files with 21 additions and 0 deletions
|
@ -20487,6 +20487,27 @@ (define-public rust-parity-wasm-0.40
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-parking-2
|
||||||
|
(package
|
||||||
|
(name "rust-parking")
|
||||||
|
(version "2.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "parking" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0wnxxnizfxlax3n709s5r83f4n8awy3m4a18q4fdk0z7z693hz22"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-development-inputs
|
||||||
|
(("rust-easy-parallel" ,rust-easy-parallel-3))))
|
||||||
|
(home-page "https://github.com/stjepang/parking")
|
||||||
|
(synopsis "Thread parking and unparking")
|
||||||
|
(description "This packages provides methods for thread parking and
|
||||||
|
unparking.")
|
||||||
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-parking-lot-0.11
|
(define-public rust-parking-lot-0.11
|
||||||
(package
|
(package
|
||||||
(name "rust-parking-lot")
|
(name "rust-parking-lot")
|
||||||
|
|
Loading…
Reference in a new issue