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

commit 72ea45616fc7c01914fb8c03d539378da868107a
Author: Nicolas Graves <ngra...@ngraves.fr>
AuthorDate: Sun Feb 16 01:34:18 2025 +0100

    gnu: Add ruby-ice-nine.
    
    * gnu/packages/ruby.scm (ruby-ice-nine): New variable.
    
    Signed-off-by: Sharlatan Hellseher <sharlata...@gmail.com>
---
 gnu/packages/ruby.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 68fcb75213..06b78c96ff 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -541,6 +541,25 @@ an extensible architecture with a swappable backend.")
     (home-page "https://github.com/ruby-i18n/i18n";)
     (license license:expat)))
 
+(define-public ruby-ice-nine
+  (package
+    (name "ruby-ice-nine")
+    (version "0.11.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "ice_nine" version))
+       (sha256
+        (base32 "1nv35qg1rps9fsis28hz2cq2fx1i96795f91q4nmkm934xynll2x"))))
+    (build-system ruby-build-system)
+    (arguments
+     (list #:tests? #f))  ;Dependency on convoluted unpackaged ruby-devtools.
+    (synopsis "Deep Freeze Ruby Objects")
+    (description
+     "This package provides a function to deep freeze Ruby objects.")
+    (home-page "https://github.com/dkubb/ice_nine";)
+    (license license:expat)))
+
 (define-public ruby-io-console
   (package
     (name "ruby-io-console")

Reply via email to