mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Add rust-indicatif-0.16.
* gnu/packages/crates-io.scm (rust-indicatif-0.16): New variable.
This commit is contained in:
parent
246c79e6a9
commit
4b9ea794a7
1 changed files with 28 additions and 0 deletions
|
@ -75205,6 +75205,34 @@ (define-public rust-impl-trait-for-tuples-0.2
|
|||
a trait for tuples.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-indicatif-0.16
|
||||
(package
|
||||
(name "rust-indicatif")
|
||||
(version "0.16.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "indicatif" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"06xyjs0kzqiqkjn60n1miwm2l87sa9p2lmzz0ymq18y72z37s81d"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-console" ,rust-console-0.15)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-number-prefix" ,rust-number-prefix-0.4)
|
||||
("rust-rayon" ,rust-rayon-1)
|
||||
("rust-regex" ,rust-regex-1)
|
||||
("rust-unicode-segmentation" ,rust-unicode-segmentation-1)
|
||||
("rust-unicode-width" ,rust-unicode-width-0.1))))
|
||||
(home-page "https://github.com/console-rs/indicatif")
|
||||
(synopsis "Progress bar and cli reporting library for Rust")
|
||||
(description
|
||||
"This package provides a progress bar and cli reporting library for
|
||||
Rust.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-inflections-1
|
||||
(package
|
||||
(name "rust-inflections")
|
||||
|
|
Loading…
Reference in a new issue