gnu: Add rust-getopts.

* gnu/packages/crates-io.scm (rust-getopts): New variable.
master
Efraim Flashner 2019-09-05 20:31:32 +03:00
parent 9a5ee9928a
commit 516b2f1a3b
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -968,6 +968,28 @@ archive to be linked into Rustcode.")
(license (list license:asl2.0
license:expat))))
(define-public rust-getopts
(package
(name "rust-getopts")
(version "0.2.17")
(source
(origin
(method url-fetch)
(uri (crate-uri "getopts" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"018yhq97zgcrcxwhj3pxh31h83704sgaiijdnpl0r1ir366c005r"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs
(("rust-log" ,rust-log))))
(home-page "https://github.com/rust-lang-nursery/getopts")
(synopsis "Rust library for option parsing for CLI utilities")
(description "This library provides getopts-like option parsing.")
(license (list license:asl2.0
license:expat))))
(define-public rust-glob
(package
(name "rust-glob")