me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-atomic-polyfill-1.

* gnu/packages/crates-io.scm (rust-atomic-polyfill-1): New variable.
master
Ricardo Wurmus 2022-08-26 12:06:19 +02:00
parent cbcf87c01f
commit f243233e8d
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 21 additions and 0 deletions

View File

@ -5176,6 +5176,27 @@ methods.")
(description "This package provides a safe abstraction around AtomicPtr.")
(license license:asl2.0)))
(define-public rust-atomic-polyfill-1
(package
(name "rust-atomic-polyfill")
(version "1.0.1")
(source (origin
(method url-fetch)
(uri (crate-uri "atomic-polyfill" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1ckvmx98ffyxax1irb61p0aln4v65xxnz4d2qgavhvcd513zb6fj"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-critical-section" ,rust-critical-section-1))))
(home-page "https://github.com/embassy-rs/atomic-polyfill")
(synopsis "Atomic polyfills, for targets where they're not available.")
(description "This package provides atomic polyfills, for targets where
they're not available.")
(license (list license:expat license:asl2.0))))
(define-public rust-atomic-polyfill-0.1
(package
(name "rust-atomic-polyfill")