guix_mirror_bot pushed a commit to branch ruby-team
in repository guix.
commit 9d8468e0f347700a9f5585911582f5fc4d2a499f
Author: Yan Abu Arab <[email protected]>
AuthorDate: Sat Dec 20 02:30:24 2025 +0200
gnu: Add ruby-pastel.
* gnu/packages/ruby-xyz.scm (ruby-pastel): New variable.
Change-Id: Id29ba0f928d96d74cb8c8a103efeaa13ca42844e
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 06224819c7..046a1fa617 100644
--- a/gnu/packages/ruby-xyz.scm
+++ b/gnu/packages/ruby-xyz.scm
@@ -451,6 +451,30 @@ class itself.")
(home-page "https://github.com/ruby/ostruct")
(license (list license:bsd-2))))
+(define-public ruby-pastel
+ (package
+ (name "ruby-pastel")
+ (version "0.8.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (rubygems-uri "pastel" version))
+ (sha256
+ (base32 "0xash2gj08dfjvq4hy6l1z22s5v30fhizwgs10d6nviggpxsj7a8"))))
+ (build-system ruby-build-system)
+ (arguments
+ (list
+ ;; no tests
+ #:tests? #f))
+ (propagated-inputs (list ruby-tty-color))
+ (synopsis "Ruby terminal output styling with an intuitive and clean API")
+ (description
+ "Ruby @code{::Pastel} is a simple, minimal and intuitive API
+for styling strings that doesn't monkey patch the String class. Part of the
+TTY Toolkit project which provides a range of terminal application
capabilities.")
+ (home-page "https://ttytoolkit.org")
+ (license license:expat)))
+
(define-public ruby-requires
(package
(name "ruby-requires")