mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add rust-clap-2.
* gnu/packages/rust-cbindgen.scm (rust-clap-2): New hidden variable.
This commit is contained in:
parent
df22526740
commit
26be7f23f8
1 changed files with 21 additions and 0 deletions
|
@ -128,3 +128,24 @@ (define rust-cfg-if-0.1
|
|||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define rust-clap-2
|
||||
(package
|
||||
(name "rust-clap")
|
||||
(version "2.33.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "clap" version))
|
||||
(file-name (string-append name "-" version ".crate"))
|
||||
(sha256
|
||||
(base32
|
||||
"1nf6ld3bims1n5vfzhkvcb55pdzh04bbhzf8nil5vvw05nxzarsh"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://clap.rs/")
|
||||
(synopsis "Command Line Argument Parser")
|
||||
(description
|
||||
"This package provides a simple to use, efficient, and full-featured
|
||||
Command Line Argument Parser.")
|
||||
(properties '((hidden? . #t)))
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue