gnu: Add ruby-varint.

* gnu/packages/ruby.scm (ruby-varint): New variable.
This commit is contained in:
Maxim Cournoyer 2020-07-01 00:12:32 -04:00
parent f4699abc26
commit 1f014c9769
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -6319,6 +6319,25 @@ (define-public ruby-pry-stack-explorer
(home-page "https://github.com/pry/pry-stack_explorer")
(license license:expat)))
(define-public ruby-varint
(package
(name "ruby-varint")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "varint" version))
(sha256
(base32
"1y0l2qc64cwsyv76ygg9bbjnk86riz2kq73kmn87gdrlmpiyrdac"))))
(build-system ruby-build-system)
(arguments '(#:tests? #f)) ;no test suite
(synopsis "Variable length integers (varint) C extension for Ruby")
(description "This package provides a small C extension to speed up
variable length integers (varint) in Ruby Protocol Buffers.")
(home-page "https://github.com/liquidm/varint")
(license license:bsd-3)))
(define-public ruby-gherkin
(package
(name "ruby-gherkin")