gnu: Add rust-try-lock.
* gnu/packages/crates-io.scm (rust-try-lock): New variable.
This commit is contained in:
parent
efc244c53b
commit
5a77fcca3f
|
@ -1668,6 +1668,25 @@ fixed set of worker threads.")
|
||||||
"TryFrom and TryInto traits for failable conversions that return a Result.")
|
"TryFrom and TryInto traits for failable conversions that return a Result.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-try-lock
|
||||||
|
(package
|
||||||
|
(name "rust-try-lock")
|
||||||
|
(version "0.2.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "try-lock" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"10p36rx6pqi9d0zr876xa8vksx2m66ha45myakl50rn08dxyn176"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(home-page "https://github.com/seanmonstar/try-lock")
|
||||||
|
(synopsis "Lightweight atomic lock")
|
||||||
|
(description
|
||||||
|
"This package provides a lightweight atomic lock.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-typenum
|
(define-public rust-typenum
|
||||||
(package
|
(package
|
||||||
(name "rust-typenum")
|
(name "rust-typenum")
|
||||||
|
|
Loading…
Reference in New Issue