mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: Add rust-docopt-1.1.
* gnu/packages/crates-io.scm (rust-docopt-1.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
fbd9fd9b32
commit
22772b1c20
1 changed files with 26 additions and 0 deletions
|
@ -1047,6 +1047,32 @@ (define-public rust-doc-comment-0.3
|
|||
(properties '((hidden? . #t)))
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-docopt-1.1
|
||||
(package
|
||||
(name "rust-docopt")
|
||||
(version "1.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "docopt" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0s9rcpmnnivs502q69lc1h1wrwapkq09ikgbfbgqf31idmc5llkz"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-lazy-static" ,rust-lazy-static-1.3)
|
||||
("rust-regex" ,rust-regex-1.1)
|
||||
("rust-serde" ,rust-serde-1.0)
|
||||
("rust-strsim" ,rust-strsim-0.9))))
|
||||
(home-page "https://github.com/docopt/docopt.rs")
|
||||
(synopsis "Command line argument parsing")
|
||||
(description "Command line argument parsing.")
|
||||
(license (list license:expat license:unlicense))))
|
||||
|
||||
(define-public rust-dtoa-0.4
|
||||
(package
|
||||
(name "rust-dtoa")
|
||||
|
|
Loading…
Reference in a new issue