gnu: Add ruby-multihashes.

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

Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
This commit is contained in:
Stephen Paul Weber 2022-05-10 07:46:35 -04:00 committed by Raghav Gururajan
parent 1cb87949d9
commit ad2f8ee1b2
No known key found for this signature in database
GPG key ID: 5F5816647F8BE551

View file

@ -12380,3 +12380,24 @@ (define-public ruby-multicodecs
multiformats/multicodec, a canonical table of of codecs used by various
multiformats.")
(license license:expat)))
(define-public ruby-multihashes
(package
(name "ruby-multihashes")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "multihashes" version))
(sha256
(base32 "17wiyy3fiv8rpgdv9ca01yncsmaaf8yg15bg18wc7m9frss1vgqg"))))
(build-system ruby-build-system)
(propagated-inputs
(list
ruby-multicodecs))
(home-page "https://github.com/multiformats/ruby-multihash")
(synopsis "Multihash implementation for Ruby")
(description "Multihashes provides a simple, low-level multihash
implementation for Ruby. A multihash is a digest with an embedded hash function
code")
(license license:expat)))