diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-02-16 01:34:07 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-06-20 20:39:59 +0200 |
| commit | 51ad1fb5051b8812e2df9fd903b1ffd86554c997 (patch) | |
| tree | 7b0590a2108db0404f12bbb56c7f50880b7edd3b /gnu/packages/ruby.scm | |
| parent | cfade0940349010737322f8e63f96ea0ec75dc39 (diff) | |
gnu: Add ruby-base64.
* gnu/packages/ruby.scm (ruby-base64): New variable.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/ruby.scm')
| -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 8de79c3704d..666f181d0da 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1313,6 +1313,25 @@ specified in a \"Gemfile\", as well as their dependencies.") (home-page "https://bundler.io/") (license license:expat))) +(define-public ruby-base64 + (package + (name "ruby-base64") + (version "0.2.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "base64" version)) + (sha256 + (base32 "01qml0yilb9basf7is2614skjp8384h2pycfx86cr8023arfj98g")))) + (build-system ruby-build-system) + (arguments '(#:tests? #f)) ; No tests bundled. + (synopsis "Base64 encoding/decoding in Ruby") + (description + "This package provides support for encoding and decoding binary data +using a Base64 representation.") + (home-page "https://github.com/ruby/base64") + (license (list license:bsd-2)))) + (define-public ruby-builder (package (name "ruby-builder") |
