efraim pushed a commit to branch rust-team
in repository guix.

commit c50eb23b2b573bfb9bc22d098c8ae231f6a7466d
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Dec 29 21:41:03 2024 +0200

    gnu: Add rust-nanoserde-derive-0.1.
    
    * gnu/packages/crates-io.scm (rust-nanoserde-derive-0.1): New variable.
    
    Change-Id: I77cb94c1d0c0c18adc16c9096e829dfcac05df37
---
 gnu/packages/crates-io.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5515e5af06..ef30f06c13 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -45936,6 +45936,28 @@ quick compile time, and minimal dependencies.")
         ("rust-random-fast-rng" ,rust-random-fast-rng-0.1)
         ("rust-randomize" ,rust-randomize-4))))))
 
+(define-public rust-nanoserde-derive-0.1
+  (package
+    (name "rust-nanoserde-derive")
+    (version "0.1.22")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "nanoserde-derive" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "011211f0flikd4sg4mylk9ivfhf7rn3hcl3qcvnf7drp2g1b4hz9"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs (("rust-hashbrown" ,rust-hashbrown-0.12))))
+    (home-page "https://github.com/not-fl3/nanoserde";)
+    (synopsis
+     "Fork of makepad-tinyserde derive without any external dependencies")
+    (description
+     "This package provides a fork of makepad-tinyserde derive without any
+external dependencies.")
+    (license license:expat)))
+
 (define-public rust-napi-2
   (package
     (name "rust-napi")

Reply via email to