1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 10:30:43 +02:00

gnu: Add rust-educe@0.6.0.

* gnu/packages/crates-io.scm (rust-educe-0.6): New variable.

Change-Id: Ic7f69f13a37e098693fc7a37507202fb9f85a353
This commit is contained in:
Danny Milosavljevic 2025-05-31 18:02:11 +02:00
parent 4d7bcd38eb
commit a77e25cc3f
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -98924,6 +98924,32 @@ proc-macro for structs.")
tables.")
(license (list license:expat license:asl2.0))))
(define-public rust-educe-0.6
(package
(name "rust-educe")
(version "0.6.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "educe" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "05wlg6wzil59lxc3kbs476gwykj6m63dbfv83frxx35xw54w0yqx"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-enum-ordinalize" ,rust-enum-ordinalize-4)
("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-2))))
(home-page "https://magiclen.org/educe")
(synopsis
"Facilitate the swift implementation of Rust's built-in traits")
(description
"This crate offers procedural macros designed to facilitate the swift
implementation of Rust's built-in traits.")
(license license:expat)))
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar