me
/
guix
Archived
1
0
Fork 0

gnu: Add ruby-countdownlatch.

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

Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
Stephen Paul Weber 2022-05-10 06:20:54 -04:00 committed by Raghav Gururajan
parent c37d14fbea
commit 3ee6cb8d54
No known key found for this signature in database
GPG Key ID: 5F5816647F8BE551
1 changed files with 18 additions and 0 deletions

View File

@ -12282,3 +12282,21 @@ library. It is perfect for asynchronous processes like emailing, data crunching
or social platform manipulation; and generally recommended for jobs that are
fast and non-mission critical like logs, emails, etc.")
(license license:expat)))
(define-public ruby-countdownlatch
(package
(name "ruby-countdownlatch")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "countdownlatch" version))
(sha256
(base32 "1v6pbay6z07fp7yvnba1hmyacbicvmjndd8rn2h1b5rmpcb5s0j3"))))
(build-system ruby-build-system)
(home-page "https://github.com/benlangfeld/countdownlatch")
(synopsis "Thread synchronization aid Ruby")
(description "CountDownLatch is a synchronization aid that allows one or
more threads to wait until a set of operations being performed in other threads
completes.")
(license license:expat)))