diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-02-08 10:27:39 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:58:42 +0200 |
commit | 4f7416d8d5fefe2f42fe3d57f5f59a193e519ca9 (patch) | |
tree | 4403f0ef67175959c2f26e088cd9749965993d31 | |
parent | 8949fb9a8768f7371f5614fe4e4384f6fac5b1c8 (diff) |
gnu: Add rust-serde-big-array-0.5.
* gnu/packages/crates-io.scm (rust-serde-big-array-0.5): New variable.
(rust-serde-big-array-0.4): Inherit from rust-serde-big-array-0.5.
Change-Id: I5cd56d5db91cb20297a62fc0751676b24de3911f
-rw-r--r-- | gnu/packages/crates-io.scm | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 65929125ca..1ad4afdb6b 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -57668,8 +57668,30 @@ formats: (description "This package provides a serde crate's auxiliary library.") (license license:expat))) +(define-public rust-serde-big-array-0.5 + (package + (name "rust-serde-big-array") + (version "0.5.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "serde-big-array" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0zsb9s9rcca3408kg20c6xpx917c9vbbnap5gvrf0wvdqz17rz0i")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs (("rust-serde-derive" ,rust-serde-derive-1) + ("rust-serde-json" ,rust-serde-json-1)))) + (home-page "https://github.com/est31/serde-big-array") + (synopsis "Big array helper for serde.") + (description "Big array helper for serde.") + (license (list license:expat license:asl2.0)))) + (define-public rust-serde-big-array-0.4 (package + (inherit rust-serde-big-array-0.5) (name "rust-serde-big-array") (version "0.4.1") (source (origin @@ -57678,17 +57700,12 @@ formats: (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1rwhbrffdxy87bxbyx8p68cg30gf0dlflx14vk1qiwlafjdg08rk")))) - (build-system cargo-build-system) (arguments `(#:cargo-inputs (("rust-serde" ,rust-serde-1)) #:cargo-development-inputs (("rust-serde-derive" ,rust-serde-derive-1) - ("rust-serde-json" ,rust-serde-json-1)))) - (home-page "https://github.com/est31/serde-big-array") - (synopsis "Big array helper for serde") - (description "Big array helper for serde.") - (license (list license:expat license:asl2.0)))) + ("rust-serde-json" ,rust-serde-json-1)))))) (define-public rust-serde-big-array-0.3 (package |