gnu: Add rust-serde-json-1.0.

* gnu/packages/rust-cbindgen.scm (rust-serde-json-1.0): New hidden
variable.
This commit is contained in:
Efraim Flashner 2019-10-23 10:04:00 +03:00
parent 199d800546
commit 1a7e2aa8ed
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -670,3 +670,23 @@ (define rust-serde-derive-1.0
"Macros 1.1 implementation of #[derive(Serialize, Deserialize)]")
(properties '((hidden? . #t)))
(license (list license:expat license:asl2.0))))
(define rust-serde-json-1.0
(package
(name "rust-serde-json")
(version "1.0.41")
(source
(origin
(method url-fetch)
(uri (crate-uri "serde-json" version))
(file-name (string-append name "-" version ".crate"))
(sha256
(base32
"1hipk84x40454mf599752mi7l08wb8qakz8vd6d3zp57d0mfnwig"))))
(build-system cargo-build-system)
(home-page "https://github.com/serde-rs/json")
(synopsis "A JSON serialization file format")
(description
"This package provides a JSON serialization file format.")
(properties '((hidden? . #t)))
(license (list license:expat license:asl2.0))))