me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-stability-0.1.

* gnu/packages/crates-io.scm (rust-stability-0.1): New variable.

Change-Id: I3a063c4d178148389e044b0d6203e37bcaa4bd6a
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
VÖRÖSKŐI András 2024-02-24 21:39:33 +01:00 committed by Efraim Flashner
parent e96c5ccd7f
commit dcd3bc6635
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 20 additions and 0 deletions

View File

@ -70275,6 +70275,26 @@ SPIR-V.")
(description "This package provides a runtime for a stack-alocated map.")
(license license:expat)))
(define-public rust-stability-0.1
(package
(name "rust-stability")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "stability" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1kn3vcicmpg8bnyalp15i2j0dbv6c0wc62022bcs58jdi5vv3lgb"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-1))))
(home-page "https://github.com/sagebind/stability")
(synopsis "Rust API stability attributes")
(description "Rust API stability attributes for the rest of us.")
(license license:expat)))
(define-public rust-stable-deref-trait-1
(package
(name "rust-stable-deref-trait")