1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: Add rust-monostate-impl-0.1.

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

Change-Id: Ica72fb8bce3589ed1ee5b08c3d96dcc24aaee279
This commit is contained in:
Nicolas Graves 2024-09-07 18:56:12 +02:00 committed by Ricardo Wurmus
parent ed47cde6de
commit bd7e89a1fd
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -43778,6 +43778,29 @@ possible over the OS abstractions.")
specific value.")
(license (list license:expat license:asl2.0))))
(define-public rust-monostate-impl-0.1
(package
(name "rust-monostate-impl")
(version "0.1.11")
(source
(origin
(method url-fetch)
(uri (crate-uri "monostate-impl" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1km6kc6yxvpsxciaj02zar8cx1sq142s6jn6saqn77h7165dd1pn"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-2))))
(home-page "https://github.com/dtolnay/monostate")
(synopsis "Implementation detail of the monostate crate")
(description
"This package provides implementation details of the monostate crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-more-asserts-0.3
(package
(name "rust-more-asserts")