gnu: Add rust-atty-0.2.

* gnu/packages/rust-cbindgen.scm (rust-atty-0.2): New hidden variable.
This commit is contained in:
Efraim Flashner 2019-10-23 09:42:01 +03:00
parent e99fbcad34
commit 00f5b065b5
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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)))