me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-atomic-take-1.

* gnu/packages/crates-io.scm (rust-atomic-take-1): New variable.

Change-Id: I4b817b340841a016cf759bfb86a2eaedd1f2c37f
master
Efraim Flashner 2024-03-28 11:07:35 +02:00
parent aeabff5e7e
commit b39b70df89
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 19 additions and 0 deletions

View File

@ -5882,6 +5882,25 @@ they're not available.")
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")