me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-serde-0.4.

* gnu/packages/crates-io.scm (rust-serde-0.4): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Valentin Ignatev 2020-01-26 16:04:19 +03:00 committed by Efraim Flashner
parent 1516f20a27
commit 87c1e7f5c9
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 18 additions and 0 deletions

View File

@ -14142,6 +14142,24 @@ proven statistical guarantees.")
(("rust-clippy" ,rust-clippy-0.0))
#:tests? #f))))
(define-public rust-serde-0.4
(package
(inherit rust-serde-0.9)
(name "rust-serde")
(version "0.4.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "serde" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"06s2ayx1p5zzj4q7bfld60c9iprsk1256pnh8qj6h794mjinw11b"))))
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-num" ,rust-num-0.2))))))
(define-public rust-serde-big-array-0.1
(package
(name "rust-serde-big-array")