me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-clap-conf.

* gnu/packages/crates-io.scm (rust-clap-conf-0.1): New variable.
Danny Milosavljevic 2021-08-08 14:40:20 +02:00
parent 995f740628
commit f28128626c
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5
1 changed files with 29 additions and 0 deletions

View File

@ -56909,6 +56909,35 @@ variant of this library is available separately as @code{im}.")
(define-public rust-skim-0.7
(deprecated-package "rust-skim-0.7" skim-0.7))
(define-public rust-clap-conf-0.1
(package
(name "rust-clap-conf")
(version "0.1.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "clap_conf" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1n29wr6ns660hi63mc30zvs7dhidaycw35am9spzknsal3nrs0sn"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-anyhow" ,rust-anyhow-1)
("rust-clap" ,rust-clap-2)
("rust-serde" ,rust-serde-1)
("rust-thiserror" ,rust-thiserror-1)
("rust-toml" ,rust-toml-0.5))))
(home-page
"https://github.com/storyfeet/clap_conf")
(synopsis
"A library to unify commandline arguments with config files and environment variables. And make it easier for users to tell your program how to behave across the three main input sources")
(description
"This package provides a library to unify commandline arguments with config files and environment variables. And make it easier for users to tell your program how to behave across the three main input sources")
(license license:expat)))
(define-public svd2rust
(package
(name "svd2rust")