mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 07:27:48 -05:00
gnu: Add rust-atomic-take-1.
* gnu/packages/crates-io.scm (rust-atomic-take-1): New variable. Change-Id: I4b817b340841a016cf759bfb86a2eaedd1f2c37f
This commit is contained in:
parent
aeabff5e7e
commit
b39b70df89
1 changed files with 19 additions and 0 deletions
|
@ -5882,6 +5882,25 @@ (define-public rust-atomic-polyfill-0.1
|
|||
they're not available.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-atomic-take-1
|
||||
(package
|
||||
(name "rust-atomic-take")
|
||||
(version "1.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "atomic-take" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1hzvfqiy0ixsawkh7ci9visn95kx2j6yvnqxz536x5wpzranpax8"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-development-inputs (("rust-tokio" ,rust-tokio-1))))
|
||||
(home-page "https://github.com/Darksonn/atomic-take")
|
||||
(synopsis "Atomically take a value out of a container once")
|
||||
(description "Atomically take a value out of a container once.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-atomic-write-file-0.1
|
||||
(package
|
||||
(name "rust-atomic-write-file")
|
||||
|
|
Loading…
Reference in a new issue