diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-05-22 17:56:38 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-08-14 19:38:00 +0300 |
commit | 6364dca17474447621b5222612793858c98ede7c (patch) | |
tree | 1161c5e03ad62ee6759fddb7bdb5e0281bdff7f7 /gnu | |
parent | 514c6fc94c42391c79bfd84d74241184f8e9136c (diff) |
gnu: Add rust-serde-aux-4.
* gnu/packages/crates-io.scm (rust-serde-aux-4): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 13cd3789c1..562d6402d6 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -56255,6 +56255,32 @@ fragment of code.") (("rust-clippy" ,rust-clippy-0.0)) #:tests? #f)))) +(define-public rust-serde-aux-4 + (package + (name "rust-serde-aux") + (version "4.2.0") + (source (origin + (method url-fetch) + (uri (crate-uri "serde-aux" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0fdf1hdv85ghlfcil6ynl3npbbparmlx3ynn3c0wz7bgxfvy3py3")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t ; Cut the dependency graph. + #:cargo-inputs + (("rust-chrono" ,rust-chrono-0.4) + ("rust-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1)) + ;#:cargo-development-inputs + ;(("rust-serde-qs" ,rust-serde-qs-0.10)) + )) + (home-page "https://github.com/vityafx/serde-aux") + (synopsis "Serde crate's auxiliary library") + (description "This package provides a serde crate's auxiliary library.") + (license license:expat))) + (define-public rust-serde-big-array-0.4 (package (name "rust-serde-big-array") |