gnu: Add rust-deser-hjson-1.

* gnu/packages/crates-io.scm (rust-deser-hjson-1): New variable.

Change-Id: I31fb50a0e3f13cbad080c5d9a6bab221fbf8450a
This commit is contained in:
Efraim Flashner 2024-03-31 14:29:40 +03:00
parent 3338f6be69
commit 3e3852386d
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351

View File

@ -20589,6 +20589,26 @@ structs and enums.")
(description "Deriving with custom trait bounds.")
(license (list license:expat license:asl2.0))))
(define-public rust-deser-hjson-1
(package
(name "rust-deser-hjson")
(version "1.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "deser-hjson" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1bacgp2zhyxj6m7hh00sl65b8bripw5nb80jwcniplglzscspq9h"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t ; Cut the dependency chain.
#:cargo-inputs (("rust-serde" ,rust-serde-1))))
(home-page "https://github.com/Canop/deser-hjson")
(synopsis "Hjson deserializer for Serde")
(description "This package provides an Hjson deserializer for Serde.")
(license license:expat)))
(define-public rust-deunicode-0.4
(package
(name "rust-deunicode")