mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
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:
parent
199d800546
commit
1a7e2aa8ed
1 changed files with 20 additions and 0 deletions
|
@ -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))))
|
||||
|
|
Loading…
Reference in a new issue