mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 03:15:09 -05:00
gnu: Add ruby-base32.
* gnu/packages/ruby.scm (ruby-base32): New variable. Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
This commit is contained in:
parent
9b21f4b669
commit
0f70547212
1 changed files with 20 additions and 0 deletions
|
@ -12488,3 +12488,23 @@ (define-public ruby-gem-release
|
|||
easier by automating repetitive work based on conventions, configuration, and
|
||||
templates.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-base32
|
||||
(package
|
||||
(name "ruby-base32")
|
||||
(version "0.3.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "base32" version))
|
||||
(sha256
|
||||
(base32 "1fjs0l3c5g9qxwp43kcnhc45slx29yjb6m6jxbb2x1krgjmi166b"))))
|
||||
(build-system ruby-build-system)
|
||||
(native-inputs
|
||||
(list
|
||||
ruby-gem-release))
|
||||
(home-page "https://github.com/stesla/base32")
|
||||
(synopsis "Ruby extension for base32 encoding and decoding")
|
||||
(description "Base32 is a library which provides base32 decoding and
|
||||
encoding.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue