me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/crates-io.scm (rust-serde-big-array-0.2): New variable.
(rust-serde-big-array-0.1): Inherit from rust-serde-big-array-0.2.
Efraim Flashner 2020-07-06 19:56:29 +03:00
parent 33464ad283
commit 1b4e4621d3
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 10 deletions

View File

@ -21145,19 +21145,19 @@ proven statistical guarantees.")
`(#:skip-build? #t
#:cargo-inputs (("rust-num" ,rust-num-0.2))))))
(define-public rust-serde-big-array-0.1
(define-public rust-serde-big-array-0.2
(package
(name "rust-serde-big-array")
(version "0.1.5")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "serde-big-array" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0gkyqxk760mp1lfcg6lhjk95ajc89nr0qdd0vl4ic0g8pyxcy9mr"))))
(origin
(method url-fetch)
(uri (crate-uri "serde-big-array" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0kj0h99y7ma9nsayv87fj2n680bcrwv2mrcbmc774lgak18ywgl8"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
@ -21170,6 +21170,21 @@ proven statistical guarantees.")
(description "This package provides a big array helper for serde.")
(license (list license:asl2.0 license:expat))))
(define-public rust-serde-big-array-0.1
(package
(inherit rust-serde-big-array-0.2)
(name "rust-serde-big-array")
(version "0.1.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "serde-big-array" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0gkyqxk760mp1lfcg6lhjk95ajc89nr0qdd0vl4ic0g8pyxcy9mr"))))))
(define-public rust-serde-bytes-0.11
(package
(name "rust-serde-bytes")