me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-serde-big-array-0.3.

* gnu/packages/crates-io.scm (rust-serde-big-array-0.3): New variable.
master
Ricardo Wurmus 2021-11-09 15:16:20 +00:00
parent 87a1ca383a
commit bb8a0af292
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 23 additions and 0 deletions

View File

@ -45366,6 +45366,29 @@ rules are rather complex. This crate implements the whole grammar." )
`(#:skip-build? #t `(#:skip-build? #t
#:cargo-inputs (("rust-num" ,rust-num-0.2)))))) #:cargo-inputs (("rust-num" ,rust-num-0.2))))))
(define-public rust-serde-big-array-0.3
(package
(name "rust-serde-big-array")
(version "0.3.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "serde-big-array" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0qpy3nk3dpxrrmcfmcnsijad10yi0jxy1x6gc6bbwywma9vhxchq"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-serde" ,rust-serde-1)
("rust-serde-derive" ,rust-serde-derive-1))
#:cargo-development-inputs
(("rust-serde-json" ,rust-serde-json-1))))
(home-page "https://github.com/est31/serde-big-array")
(synopsis "Big array helper for serde")
(description "This package provides a big array helper for serde.")
(license (list license:expat license:asl2.0))))
(define-public rust-serde-big-array-0.2 (define-public rust-serde-big-array-0.2
(package (package
(name "rust-serde-big-array") (name "rust-serde-big-array")