Skip to content
Snippets Groups Projects
Unverified Commit 0583bd63 authored by Efraim Flashner's avatar Efraim Flashner
Browse files

gnu: Add rust-termcolor.

* gnu/packages/crates-io.scm (rust-termcolor): New variable.
parent bfd6150e
No related branches found
No related tags found
No related merge requests found
...@@ -1491,6 +1491,29 @@ (define-public rust-synstructure-test-traits ...@@ -1491,6 +1491,29 @@ (define-public rust-synstructure-test-traits
"This package provides helper test traits for synstructure doctests.") "This package provides helper test traits for synstructure doctests.")
(license license:expat))) (license license:expat)))
(define-public rust-termcolor
(package
(name "rust-termcolor")
(version "1.0.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "termcolor" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0vjfsn1a8zvqhnrbygrz1id6yckwv1dncw3w4zj65qdx0f00kmln"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-wincolor" ,rust-wincolor))))
(home-page "https://github.com/BurntSushi/termcolor")
(synopsis "Library for writing colored text to a terminal")
(description "This package provides a simple cross platform library for
writing colored text to a terminal.")
(license (list license:unlicense
license:expat))))
(define-public rust-termios (define-public rust-termios
(package (package
(name "rust-termios") (name "rust-termios")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment