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

commit 2abe4a37246caa588b22d376265480e5abd64b52
Author: Yan Abu Arab <[email protected]>
AuthorDate: Sat Dec 20 02:31:42 2025 +0200

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

diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm
index 046a1fa617..7af3a8e0c8 100644
--- a/gnu/packages/ruby-xyz.scm
+++ b/gnu/packages/ruby-xyz.scm
@@ -576,6 +576,28 @@ the @code{TTY} Toolkit projects.")
     (home-page "https://ttytoolkit.org";)
     (license license:expat)))
 
+(define-public ruby-unicode-utils
+  (package
+    (name "ruby-unicode-utils")
+    (version "1.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "unicode_utils" version))
+       (sha256
+        (base32 "0h1a5yvrxzlf0lxxa1ya31jcizslf774arnsd89vgdhk4g7x08mr"))))
+    (build-system ruby-build-system)
+    (arguments
+     (list
+      ;; no tests in Gem
+      #:tests? #f))
+    (synopsis "Additional Unicode aware functions for Ruby 1.9")
+    (description
+     "@code{UnicodeUtils} implements Unicode algorithms for case
+conversion, normalization, text segmentation and more in pure Ruby code.")
+    (home-page "https://github.com/lang/unicode_utils";)
+    (license license:bsd-2)))
+
 (define-public ruby-i18n
   (package
     (name "ruby-i18n")

Reply via email to