1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: Add ruby-mutex-m.

* gnu/packages/ruby-xyz.scm (ruby-mutex-m): New variable.
This commit is contained in:
Nicolas Graves 2025-06-18 16:27:47 +02:00 committed by Andreas Enge
parent 70e41cb183
commit 5094b10363
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -14358,6 +14358,27 @@ characteristics.")
(home-page "https://github.com/sinatra/mustermann")
(license license:expat)))
(define-public ruby-mutex-m
(package
(name "ruby-mutex-m")
(version "0.3.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ruby/mutex_m")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "162khhcahd6bn4r63driw23745lyg7h5dx5hli3clxbrpa1c0qvx"))))
(build-system ruby-build-system)
(synopsis "Mixin to extend objects to be handled like a Mutex.")
(description
"When @code{mutex_m} is required, any object that extends or includes
@code{Mutex_m} will be treated like a Mutex.")
(home-page "https://github.com/ruby/mutex_m")
(license license:bsd-2)))
(define-public ruby-prettier-print
(package
(name "ruby-prettier-print")