me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-gumdrop-0.8.

* gnu/packages/crates-io.scm (rust-gumdrop-0.8): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Petr Hodina 2022-02-05 12:43:33 +01:00 committed by Nicolas Goaziou
parent 00516d8236
commit 0169f7ae14
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 24 additions and 0 deletions

View File

@ -25518,6 +25518,30 @@ provides standard printing of search results, similar to grep itself.")
"This package aggregates groups of values from key-value iterators.")
(license license:expat)))
(define-public rust-gumdrop-0.8
(package
(name "rust-gumdrop")
(version "0.8.0")
(source (origin
(method url-fetch)
(uri (crate-uri "gumdrop" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"02waas37nr8y669lnm1ifp6bkx79v3bd0bd4s9qcyy04aifiyms6"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-gumdrop-derive" ,rust-gumdrop-derive-0.8))
#:cargo-development-inputs
(("rust-assert-matches" ,rust-assert-matches-1))))
(home-page "https://github.com/murarth/gumdrop")
(synopsis "Option parser with custom derive support")
(description "This package provides option parser with custom derive
support.")
(license (list license:expat license:asl2.0))))
(define-public rust-gumdrop-derive-0.8
(package
(name "rust-gumdrop-derive")