efraim pushed a commit to branch master
in repository guix.
commit 00f5b065b5159aa3987731850a56dd067a070f60
Author: Efraim Flashner <[email protected]>
Date: Wed Oct 23 09:42:01 2019 +0300
gnu: Add rust-atty-0.2.
* gnu/packages/rust-cbindgen.scm (rust-atty-0.2): New hidden variable.
---
gnu/packages/rust-cbindgen.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/rust-cbindgen.scm b/gnu/packages/rust-cbindgen.scm
index aab4a81..c37b80e 100644
--- a/gnu/packages/rust-cbindgen.scm
+++ b/gnu/packages/rust-cbindgen.scm
@@ -42,3 +42,23 @@
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)))