me
/
guix
Archived
1
0
Fork 0

gnu: Add ruby-multicodecs.

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

Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
Stephen Paul Weber 2022-05-10 07:33:32 -04:00 committed by Raghav Gururajan
parent 0ed219bb33
commit 1cb87949d9
No known key found for this signature in database
GPG Key ID: 5F5816647F8BE551
1 changed files with 18 additions and 0 deletions

View File

@ -12362,3 +12362,21 @@ immutable Struct class, plus extensible, lightweight validation and coercion.")
specification. It provides 100% mutation coverage, tested on MRI 1.9, 2.0, 2.1,
2.2, Rubinius, and JRuby.")
(license license:unlicense)))
(define-public ruby-multicodecs
(package
(name "ruby-multicodecs")
(version "0.2.1")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "multicodecs" version))
(sha256
(base32 "0drq267di57l9zqw6zvqqimilz42rbc8z7392dwkk8wslq30s7v8"))))
(build-system ruby-build-system)
(home-page "https://github.com/SleeplessByte/ruby-multicodec")
(synopsis "Ruby implementation of multiformats/multicodec")
(description "Multicodecs is the ruby implementation of
multiformats/multicodec, a canonical table of of codecs used by various
multiformats.")
(license license:expat)))