mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add rust-xflags-0.2.
* gnu/packages/crates-io.scm (rust-xflags-0.2): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
0cc855cf73
commit
dee3c3bfcc
1 changed files with 25 additions and 0 deletions
|
@ -53122,6 +53122,31 @@ (define-public rust-xflags-macros-0.2
|
|||
"This package provides a private implementation details of xflags.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-xflags-0.2
|
||||
(package
|
||||
(name "rust-xflags")
|
||||
(version "0.2.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "xflags" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"12i0m43fmvwhlqid5xbr017c12j7jv3vlkjv04q428mpl3k6rbar"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-xflags-macros" ,rust-xflags-macros-0.2))))
|
||||
(home-page "https://github.com/matklad/xflags")
|
||||
(synopsis
|
||||
"Moderately simple command line arguments parser")
|
||||
(description
|
||||
"This package provides a moderately simple command line arguments parser.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-xml-rs-0.8
|
||||
(package
|
||||
(name "rust-xml-rs")
|
||||
|
|
Loading…
Reference in a new issue