gnu: Add ruby-gdbm.

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

Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2025-01-31 09:19:33 +01:00 committed by Andreas Enge
parent 1680124620
commit e68b589e96
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -4991,6 +4991,24 @@ Soundex, Metaphone, Double Metaphone, Porter Stemming.")
(home-page "https://github.com/threedaymonk/text") (home-page "https://github.com/threedaymonk/text")
(license license:expat))) (license license:expat)))
(define-public ruby-gdbm
(package
(name "ruby-gdbm")
(version "2.1.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "gdbm" version))
(sha256
(base32 "0xxygf50b2fvy8lcn2vip27vq32p607d3lwd1diplvkajijq8q8b"))))
(build-system ruby-build-system)
(arguments '(#:tests? #f)) ; No bundled tests.
(inputs (list gdbm))
(synopsis "Ruby extension for GNU dbm")
(description "This package provides a Ruby extension for GNU dbm.")
(home-page "https://github.com/ruby/gdbm")
(license license:bsd-2)))
(define-public ruby-gettext (define-public ruby-gettext
(package (package
(name "ruby-gettext") (name "ruby-gettext")