mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 08:36:32 +01:00
gnu: Add rust-serde-1.0.
* gnu/packages/rust-cbindgen.scm (rust-serde-1.0): New hidden variable.
This commit is contained in:
parent
df9a615640
commit
582630a125
1 changed files with 20 additions and 0 deletions
|
@ -629,3 +629,23 @@ (define rust-ryu-1.0
|
||||||
"Fast floating point to string conversion")
|
"Fast floating point to string conversion")
|
||||||
(properties '((hidden? . #t)))
|
(properties '((hidden? . #t)))
|
||||||
(license (list license:asl2.0 license:boost1.0))))
|
(license (list license:asl2.0 license:boost1.0))))
|
||||||
|
|
||||||
|
(define rust-serde-1.0
|
||||||
|
(package
|
||||||
|
(name "rust-serde")
|
||||||
|
(version "1.0.101")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "serde" version))
|
||||||
|
(file-name (string-append name "-" version ".crate"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1p8r24hagcsrl92w5z32nfrg9040qkgqf8iwwnf7mzigpavwk5lp"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(home-page "https://serde.rs")
|
||||||
|
(synopsis "Generic serialization/deserialization framework")
|
||||||
|
(description
|
||||||
|
"This package provides a generic serialization/deserialization framework.")
|
||||||
|
(properties '((hidden? . #t)))
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
Loading…
Reference in a new issue