[bug#78539,08/13] gnu: Add rust-envconfig@0.11.0
Commit Message
Change-Id: I1bfd2b45b8c7e235396e840f3b56819443bbc6c0
---
gnu/packages/crates-io.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
@@ -12607,6 +12607,28 @@ (define-public rust-chumsky-0.9
recovery.")
(license license:expat)))
+(define-public rust-envconfig-0.11
+ (package
+ (name "rust-envconfig")
+ (version "0.11.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "envconfig" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1g3d095anfmypbnnqcxpwgjywx8ns1xgpj5xh1amh2nxkzn0479w"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-envconfig-derive" ,rust-envconfig-derive-0.11))))
+ (home-page "https://github.com/greyblake/envconfig-rs")
+ (synopsis "Build a config structure from environment variables in Rust
+without boilerplate")
+ (description
+ "Initialize config structure from environment variables in Rust without
+boilerplate.")
+ (license license:expat)))
+
(define-public rust-envconfig-derive-0.11
(package
(name "rust-envconfig-derive")