gnu: Add ruby-securerandom.

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

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

View file

@ -16787,6 +16787,24 @@ requests.")
Dashboard. It is a Ruby Client library for IRIS / BBS API.")
(license license:expat)))
(define-public ruby-securerandom
(package
(name "ruby-securerandom")
(version "0.4.1")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "securerandom" version))
(sha256
(base32 "1cd0iriqfsf1z91qg271sm88xjnfd92b832z49p1nd542ka96lfc"))))
(build-system ruby-build-system)
(arguments '(#:tests? #f)) ; No tests found.
(synopsis "Interface for secure random number generator")
(description "This package provides a Ruby interface for secure random
number generators.")
(home-page "https://github.com/ruby/securerandom")
(license (list license:bsd-2))))
(define-public ruby-selenium-webdriver
(package
(name "ruby-selenium-webdriver")