me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-structopt-0.2.

* gnu/packages/crates-io.scm (rust-structopt-0.2): New variable.
master
Efraim Flashner 2020-02-09 11:39:20 +02:00
parent 243603c888
commit d8886fcc48
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 24 additions and 0 deletions

View File

@ -11754,6 +11754,30 @@ and Jaro-Winkler.")
(base32
"0sjsm7hrvjdifz661pjxq5w4hf190hx53fra8dfvamacvff139cf"))))))
(define-public rust-structopt-0.2
(package
(name "rust-structopt")
(version "0.2.18")
(source
(origin
(method url-fetch)
(uri (crate-uri "structopt" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1mvfv1l8vp3y402fkl2wcl34hi7gmr4bqha13dfz2xf3kjzwvhhn"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f
#:cargo-inputs
(("rust-clap" ,rust-clap-2)
("rust-structopt-derive" ,rust-structopt-derive-0.2))))
(home-page "https://github.com/TeXitoi/structopt")
(synopsis "Parse command line arguments by defining a struct")
(description
"Parse command line arguments by defining a struct.")
(license (list license:asl2.0 license:expat))))
(define-public rust-structopt-derive-0.2
(package
(name "rust-structopt-derive")