guix_mirror_bot pushed a commit to branch ruby-team
in repository guix.

commit 49d34fb15cf7379ca79627efb95acbd2a8452e0e
Author: Yan Abu Arab <[email protected]>
AuthorDate: Sat Dec 20 02:25:58 2025 +0200

    gnu: Add ruby-tty-screen.
    
    * gnu/packages/ruby-xyz.scm (ruby-tty-screen): New variable.
    
    Change-Id: I95dbd3b246bdfaeaf405b801ecee8ea601181d53
    Signed-off-by: Steve George <[email protected]>
---
 gnu/packages/ruby-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm
index c51f67320e..caa1ff7e31 100644
--- a/gnu/packages/ruby-xyz.scm
+++ b/gnu/packages/ruby-xyz.scm
@@ -504,6 +504,30 @@ or autoload all Ruby files in a directory.")
 hosts by wrapping the @file{rsync} binary.")
     (license license:expat)))
 
+(define-public ruby-tty-screen
+  (package
+    (name "ruby-tty-screen")
+    (version "0.8.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "tty-screen" version))
+       (sha256
+        (base32 "0l4vh6g333jxm9lakilkva2gn17j6gb052626r1pdbmy2lhnb460"))))
+    (build-system ruby-build-system)
+    (arguments
+     (list
+      ;; no tests
+      #:tests? #f))
+    (native-inputs (list ruby-rspec))
+    (synopsis "Terminal screen properties detection for Ruby")
+    (description
+     "Cross-platform terminal screen size detection that supports Ruby MRI,
+JRuby, TruffleRuby and Rubinius interpreters.  @code{TTY:Screen} is part of
+the @code{TTY} Toolkit projects.")
+    (home-page "https://ttytoolkit.org";)
+    (license license:expat)))
+
 (define-public ruby-i18n
   (package
     (name "ruby-i18n")

Reply via email to