~ruther/guix-local

51ad1fb5051b8812e2df9fd903b1ffd86554c997 — Nicolas Graves 1 year, 5 months ago cfade09
gnu: Add ruby-base64.

* gnu/packages/ruby.scm (ruby-base64): New variable.

Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 19 insertions(+), 0 deletions(-)

M gnu/packages/ruby.scm
M gnu/packages/ruby.scm => gnu/packages/ruby.scm +19 -0
@@ 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")