diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-02-16 01:34:18 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-06-20 20:40:00 +0200 |
| commit | 0585160545e28b2b472c777003cf1658a18cba75 (patch) | |
| tree | 160632dba1e10bdcccbb1ece4589062092ab96da /gnu | |
| parent | 281508be36b6bfa0e05afbfbf4a9a651d3c32612 (diff) | |
gnu: Add ruby-ice-nine.
* gnu/packages/ruby.scm (ruby-ice-nine): New variable.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/ruby.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 68fcb752136..06b78c96ffa 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") |
