me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-safe-arch-0.7.

* gnu/packages/crates-io.scm (rust-safe-arch-0.7): New variable.
(rust-safe-arch-0.6): Inherit from rust-safe-arch-0.7.

Change-Id: I202231b01b2daead3032f6d2b6ed573c1f42ce00
master
Efraim Flashner 2024-04-01 13:29:12 +03:00
parent 43a86290dc
commit 7053a482c5
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 9 deletions

View File

@ -66164,8 +66164,29 @@ quickly convert floating point numbers to decimal strings.")
computation (experimental)")
(license (list license:asl2.0 license:expat))))
(define-public rust-safe-arch-0.7
(package
(name "rust-safe-arch")
(version "0.7.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "safe_arch" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0m63dasp3rs9mkaa5wai6l6v14lbb788igaidys7k8g6w5f0g67k"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-bytemuck" ,rust-bytemuck-1))))
(home-page "https://github.com/Lokathor/safe_arch")
(synopsis "Access core::arch safely")
(description "This package exposes @code{core::arch} safely via
@code{#[cfg()]}.")
(license (list license:zlib license:asl2.0 license:expat))))
(define-public rust-safe-arch-0.6
(package
(inherit rust-safe-arch-0.7)
(name "rust-safe-arch")
(version "0.6.0")
(source
@ -66175,16 +66196,8 @@ computation (experimental)")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0ad5ykwgq9ll1ymp83d9cayzj8q191rik71ga5wzkndhrkj22j3r"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-bytemuck" ,rust-bytemuck-1))))
(home-page "https://github.com/Lokathor/safe_arch")
(synopsis "Access core::arch safely")
(description "This package exposes @code{core::arch} safely via
@code{#[cfg()]}.")
(license (list license:zlib license:asl2.0 license:expat))))
`(#:cargo-inputs (("rust-bytemuck" ,rust-bytemuck-1))))))
(define-public rust-safe-arch-0.5
(package