efraim pushed a commit to branch rust-team
in repository guix.
commit 3b5d27229f9c5d65600d41c7aa7dedac9aed5ac7
Author: Efraim Flashner <[email protected]>
AuthorDate: Thu Sep 19 13:53:37 2024 +0300
gnu: Add rust-serde-norway-0.9.
* gnu/packages/crates-io.scm (rust-serde-norway-0.9): New variable.
Change-Id: I1f6e849c946894abcf69628c6f8965c786a566f3
---
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 7c53c1ccb9..34e8a8180a 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -69661,6 +69661,32 @@ programs in rust.")
("rust-serde" ,rust-serde-1))
#:cargo-development-inputs (("rust-serde-derive"
,rust-serde-derive-1))))))
+(define-public rust-serde-norway-0.9
+ (package
+ (name "rust-serde-norway")
+ (version "0.9.38")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "serde_norway" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1ddyv4chvy60bnih4d8kx302a4a1qkjkj1fjk8qq290iyq4p3va6"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-indexmap" ,rust-indexmap-2)
+ ("rust-itoa" ,rust-itoa-1)
+ ("rust-ryu" ,rust-ryu-1)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-unsafe-libyaml" ,rust-unsafe-libyaml-0.2))
+ #:cargo-development-inputs (("rust-anyhow" ,rust-anyhow-1)
+ ("rust-indoc" ,rust-indoc-2)
+ ("rust-serde-derive"
,rust-serde-derive-1))))
+ (home-page "https://github.com/cafkafk/serde-yaml")
+ (synopsis "YAML data format for Serde")
+ (description "This package provides YAML data format for Serde.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-serde-path-to-error-0.1
(package
(name "rust-serde-path-to-error")