mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: Add rust-figment-0.10.
* gnu/packages/crates-io.scm (rust-figment-0.10): New variable. Change-Id: I38f592e69cef40d548181dfe961d1062b74db1a6
This commit is contained in:
parent
6c37206b52
commit
15c96dc27c
1 changed files with 33 additions and 0 deletions
|
@ -24735,6 +24735,39 @@ (define-public rust-fiat-crypto-0.1
|
|||
@code{fiat-crypto} libraries.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-figment-0.10
|
||||
(package
|
||||
(name "rust-figment")
|
||||
(version "0.10.15")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "figment" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1dnfri2371wzmk7lcxfd121z35b1b2251d93yc23w8b7f1z6fw3j"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; unresolved import `figment::providers::Toml`
|
||||
#:cargo-inputs (("rust-atomic" ,rust-atomic-0.6)
|
||||
("rust-parking-lot" ,rust-parking-lot-0.12)
|
||||
("rust-pear" ,rust-pear-0.2)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-serde-json" ,rust-serde-json-1)
|
||||
("rust-serde-yaml" ,rust-serde-yaml-0.9)
|
||||
("rust-tempfile" ,rust-tempfile-3)
|
||||
("rust-toml" ,rust-toml-0.8)
|
||||
("rust-uncased" ,rust-uncased-0.9)
|
||||
("rust-version-check" ,rust-version-check-0.9))
|
||||
#:cargo-development-inputs (("rust-clap" ,rust-clap-4)
|
||||
("rust-parking-lot" ,rust-parking-lot-0.12)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-tempfile" ,rust-tempfile-3))))
|
||||
(home-page "https://github.com/SergioBenitez/Figment")
|
||||
(synopsis "Configuration library")
|
||||
(description "This package provides an opinionated configuration library.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-file-diff-1
|
||||
(package
|
||||
(name "rust-file-diff")
|
||||
|
|
Loading…
Reference in a new issue