mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: Add rust-clicolors-control.
* gnu/packages/crates-io.scm (rust-clicolors-control): New variable.
This commit is contained in:
parent
ec3bbde43e
commit
eb34db03ee
1 changed files with 26 additions and 0 deletions
|
@ -203,6 +203,32 @@ (define-public rust-cfg-if
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-clicolors-control
|
||||||
|
(package
|
||||||
|
(name "rust-clicolors-control")
|
||||||
|
(version "1.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "clicolors-control" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1y80cgarxhrd1bz5yjm81r444v6flvy36aaxrrsac0yhfd6gvavk"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-atty" ,rust-atty)
|
||||||
|
("rust-lazy-static" ,rust-lazy-static)
|
||||||
|
("rust-libc" ,rust-libc)
|
||||||
|
("rust-winapi" ,rust-winapi))))
|
||||||
|
(home-page "https://github.com/mitsuhiko/clicolors-control")
|
||||||
|
(synopsis "Common utility library to control CLI colorization")
|
||||||
|
(description
|
||||||
|
"This package provides a common utility library to control CLI
|
||||||
|
colorization.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-cloudabi
|
(define-public rust-cloudabi
|
||||||
(package
|
(package
|
||||||
(name "rust-cloudabi")
|
(name "rust-cloudabi")
|
||||||
|
|
Loading…
Reference in a new issue