guix_mirror_bot pushed a commit to branch master
in repository guix.

commit a77e25cc3fca701f1a8f52ce8130bc9a2674715e
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Sat May 31 18:02:11 2025 +0200

    gnu: Add [email protected].
    
    * gnu/packages/crates-io.scm (rust-educe-0.6): New variable.
    
    Change-Id: Ic7f69f13a37e098693fc7a37507202fb9f85a353
---
 gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index a5939f0b75..9c4496878d 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -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

Reply via email to