me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-serde-0.8.

* gnu/packages/crates-io.scm (rust-serde-0.8): New variable.
master
Efraim Flashner 2020-02-06 22:04:46 +02:00
parent e68321a641
commit d47c989baf
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 18 additions and 0 deletions

View File

@ -10452,6 +10452,24 @@ proven statistical guarantees.")
"This package provides a generic serialization/deserialization framework.") "This package provides a generic serialization/deserialization framework.")
(license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
(define-public rust-serde-0.8
(package
(inherit rust-serde-1.0)
(name "rust-serde")
(version "0.8.23")
(source
(origin
(method url-fetch)
(uri (crate-uri "serde" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1j4ajipn0sf4ya0crgcb94s848qp7mfc35n6d0q2rf8rk5skzbcx"))))
(arguments
`(#:cargo-development-inputs
(("rust-clippy" ,rust-clippy-0.0))
#:tests? #f))))
;; Circular dev dependency on bincode. ;; Circular dev dependency on bincode.
;; Probably not going away: https://github.com/rust-lang/cargo/issues/4242 ;; Probably not going away: https://github.com/rust-lang/cargo/issues/4242
(define-public rust-serde-bytes-0.11 (define-public rust-serde-bytes-0.11