guix_mirror_bot pushed a commit to branch master
in repository guix.

commit e8ef0daef40b38f4a52abd1e0bd1ef77c7fc4d1f
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Sat May 31 16:45:06 2025 +0200

    gnu: Add [email protected].
    
    * gnu/packages/crates-io.scm (rust-deku-0.16): New variable.
    
    Change-Id: I03ad06ff03ced796dbb6feff10e53b99f0165a27
---
 gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 9f150df692..81aedf5b75 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -98826,6 +98826,29 @@ in Pure Rust.")
      "This package provides a bit level serialization/deserialization
 proc-macro for structs.")
     (license (list license:expat license:asl2.0))))
+
+(define-public rust-deku-0.16
+  (package
+    (name "rust-deku")
+    (version "0.16.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "deku" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "10a4x39p348s8hb7292sy9i33zd5h0wrpr9qzkispcq5gb68g6w1"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-bitvec" ,rust-bitvec-1)
+                       ("rust-deku-derive" ,rust-deku-derive-0.16)
+                       ("rust-log" ,rust-log-0.4))))
+    (home-page "https://github.com/sharksforarms/deku";)
+    (synopsis "bit level serialization/deserialization proc-macro for structs")
+    (description
+     "This package provides 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