dannym pushed a commit to branch master
in repository guix.

commit 28c55c06ccafebcc41fdccb0165b0d70e6d2821e
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Tue May 20 00:42:04 2025 +0200

    gnu: Add [email protected].
    
    * gnu/packages/crates-io.scm (rust-abscissa-derive-0.8): New variable.
    
    Change-Id: I185a055aeadb0444c652318554ecfc985d5fd565
---
 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 d8ea068a53..1ac8f75864 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -77195,6 +77195,32 @@ duration parsing.")
 @code{#[derive(Readable, Writable)]} support")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-abscissa-derive-0.8
+  (package
+    (name "rust-abscissa-derive")
+    (version "0.8.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "abscissa_derive" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1qkzz20v71y26id2sfcdfc3jhgzf4gihf6g07x1xmx1f3mi19n88"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-ident-case" ,rust-ident-case-1)
+                       ("rust-proc-macro2" ,rust-proc-macro2-1)
+                       ("rust-quote" ,rust-quote-1)
+                       ("rust-syn" ,rust-syn-1)
+                       ("rust-synstructure" ,rust-synstructure-0.12))))
+    (home-page "https://github.com/iqlusioninc/abscissa";)
+    (synopsis
+     "Custom derive support for the abscissa application microframework")
+    (description
+     "This package provides Custom derive support for the abscissa application 
microframework.")
+    (license license:asl2.0)))
+
 (define-public rust-spin-0.9
   (package
     (name "rust-spin")

Reply via email to