mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: Add ruby-value-semantics.
* gnu/packages/ruby.scm (ruby-value-semantics): New variable. Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
This commit is contained in:
parent
3ee6cb8d54
commit
22b9ac3f76
1 changed files with 28 additions and 0 deletions
|
@ -12300,3 +12300,31 @@ (define-public ruby-countdownlatch
|
||||||
more threads to wait until a set of operations being performed in other threads
|
more threads to wait until a set of operations being performed in other threads
|
||||||
completes.")
|
completes.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-value-semantics
|
||||||
|
(package
|
||||||
|
(name "ruby-value-semantics")
|
||||||
|
(version "3.6.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "value_semantics" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1vdwai8wf6r1fkvdpyz1vzxm89q7ghjvb3pqpg2kvwibwzd99dnx"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "rspec")))))))
|
||||||
|
(native-inputs
|
||||||
|
(list
|
||||||
|
ruby-rspec))
|
||||||
|
(home-page "https://github.com/tomdalling/value_semantics")
|
||||||
|
(synopsis "Ruby gem for making value classes")
|
||||||
|
(description "ValueSemantics generates modules that provide conventional
|
||||||
|
value semantics for a given set of attributes. The behaviour is similar to an
|
||||||
|
immutable Struct class, plus extensible, lightweight validation and coercion.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue