diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-12-17 22:39:44 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-12-28 14:10:15 -0500 |
commit | b480801b539353ff162e781d683306e7a56d0d8e (patch) | |
tree | f97b3a9d6c4b4fc00229a69afc36a631fbffaa4a /gnu | |
parent | b2ab9a38d03aa2aa749fe89c6ef55a893afa400c (diff) | |
download | guix-b480801b539353ff162e781d683306e7a56d0d8e.tar guix-b480801b539353ff162e781d683306e7a56d0d8e.tar.gz |
gnu: Add rust-gjson-0.8.
* gnu/packages/crates-io.scm (rust-gjson-0.8): New variable.
(rust-gjson-0.7): Inherit from above.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 2406fe3d6e..8820133b5e 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -21663,17 +21663,17 @@ reading and writing git repositories.") libcurl, which is intended to be used with the @code{git2} crate.") (license (list license:expat license:asl2.0)))) -(define-public rust-gjson-0.7 +(define-public rust-gjson-0.8 (package (name "rust-gjson") - (version "0.7.5") + (version "0.8.0") (source (origin (method url-fetch) (uri (crate-uri "gjson" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0vhary4ha77scriaw6r4nv16ha9pfzirm84sjc240csqwb542p10")))) + (base32 "164nwjx81j8cnnvi63h0dcxdc9ib3s0k9wx15l72hxp4vklx16a5")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t)) (home-page "https://github.com/tidwall/gjson.rs") @@ -21681,6 +21681,20 @@ libcurl, which is intended to be used with the @code{git2} crate.") (description "Gjson is a JSON parser for Rust.") (license license:expat))) +(define-public rust-gjson-0.7 + (package + (inherit rust-gjson-0.8) + (name "rust-gjson") + (version "0.7.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "gjson" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0vhary4ha77scriaw6r4nv16ha9pfzirm84sjc240csqwb542p10")))) + (arguments `(#:skip-build? #t)))) + (define-public rust-glam-0.17 (package (name "rust-glam") |