guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 4d9b6c5040c29f5e08ea780954ac363f07841c92
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Sat May 31 16:44:59 2025 +0200

    gnu: Add [email protected].
    
    * gnu/packages/crates-io.scm (rust-deku-derive-0.16): New variable.
    
    Change-Id: Ibe9c8fa60704421691a257f5800b09762af43fe6
---
 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 e08ab179e6..9f150df692 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -98800,6 +98800,32 @@ in Pure Rust.")
     (description
      "This package provides a restricted plain text serializer for serde.")
     (license (list license:expat license:asl2.0))))
+
+(define-public rust-deku-derive-0.16
+  (package
+    (name "rust-deku-derive")
+    (version "0.16.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "deku_derive" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "17h0wn3xipgdrg312dd2z0aaks6pfv3xfjm7aaiib4i3f8js2b2f"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-darling" ,rust-darling-0.14)
+                       ("rust-proc-macro-crate" ,rust-proc-macro-crate-1)
+                       ("rust-proc-macro2" ,rust-proc-macro2-1)
+                       ("rust-quote" ,rust-quote-1)
+                       ("rust-syn" ,rust-syn-1))))
+    (home-page "https://github.com/sharksforarms/deku";)
+    (synopsis "bit level serialization/deserialization proc-macro for structs")
+    (description
+     "This package provides a bit level serialization/deserialization
+proc-macro for structs.")
+    (license (list license:expat license:asl2.0))))
 ;;;
 ;;; 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