mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add rust-atty-0.2.
* gnu/packages/rust-cbindgen.scm (rust-atty-0.2): New hidden variable.
This commit is contained in:
parent
e99fbcad34
commit
00f5b065b5
1 changed files with 20 additions and 0 deletions
|
@ -42,3 +42,23 @@ (define rust-ansi-term-0.11
|
|||
text or blue underlined text, on ANSI terminals.")
|
||||
(properties '((hidden? . #t)))
|
||||
(license license:expat)))
|
||||
|
||||
(define rust-atty-0.2
|
||||
(package
|
||||
(name "rust-atty")
|
||||
(version "0.2.13")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "atty" version))
|
||||
(file-name (string-append name "-" version ".crate"))
|
||||
(sha256
|
||||
(base32
|
||||
"140sswp1bwqwc4zk80bxkbnfb3g936hgrb77g9g0k1zcld3wc0qq"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://github.com/softprops/atty")
|
||||
(synopsis "A simple interface for querying atty")
|
||||
(description
|
||||
"This package provides a simple interface for querying atty.")
|
||||
(properties '((hidden? . #t)))
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue