mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 11:29:59 +01:00
gnu: Add rust-spin.
* gnu/packages/crates-io.scm (rust-spin): New variable.
This commit is contained in:
parent
b158738a04
commit
a60f26b24d
1 changed files with 20 additions and 0 deletions
|
@ -680,6 +680,26 @@ words, like Python's shlex.")
|
||||||
data type.")
|
data type.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-spin
|
||||||
|
(package
|
||||||
|
(name "rust-spin")
|
||||||
|
(version "0.5.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "spin" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0m9clchsj0rf13bggsgvbv9haiy0f6rhvnvkpvkk8720a5pkydj4"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(home-page "https://github.com/mvdnes/spin-rs.git")
|
||||||
|
(synopsis "Synchronization primitives based on spinning")
|
||||||
|
(description "This crate provides synchronization primitives based on
|
||||||
|
spinning. They may contain data, are usable without @code{std},and static
|
||||||
|
initializers are available.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-unicode-xid
|
(define-public rust-unicode-xid
|
||||||
(package
|
(package
|
||||||
(name "rust-unicode-xid")
|
(name "rust-unicode-xid")
|
||||||
|
|
Loading…
Add table
Reference in a new issue