gnu: Add ruby-set.

* gnu/packages/ruby.scm (ruby-set): New variable.
This commit is contained in:
Christopher Baines 2023-06-22 10:38:53 +01:00
parent 6ee5f968bc
commit 83b2332242
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -6611,6 +6611,25 @@ (define-public ruby-parser
(home-page "https://github.com/whitequark/parser")
(license license:expat)))
(define-public ruby-set
(package
(name "ruby-set")
(version "1.0.3")
(source (origin
(method url-fetch)
(uri (rubygems-uri "set" version))
(sha256
(base32
"07kc057nrkddrybqmlbmgf9x7nsmbc3ni6gy1z6xjx5b838vlj33"))))
(build-system ruby-build-system)
(synopsis
"Ruby class to deal with collections of unordered, unique values")
(description
"This package provides a class to deal with collections of unordered,
unique values")
(home-page "https://github.com/ruby/set")
(license license:bsd-2)))
(define-public ruby-sexp-processor
(package
(name "ruby-sexp-processor")