Archived
1
0
Fork 0

gnu: Add ruby-webrick.

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

Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
This commit is contained in:
Stephen Paul Weber 2022-06-30 06:37:55 -04:00 committed by Raghav Gururajan
parent f33414564d
commit eb10b8841f
No known key found for this signature in database
GPG key ID: 5F5816647F8BE551

View file

@ -12810,3 +12810,20 @@ interface for the Sentry error logger.")
(description "Sentry provides a gem that provides a client
interface for the Sentry error logger.")
(license license:expat)))
(define-public ruby-webrick
(package
(name "ruby-webrick")
(version "1.7.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "webrick" version))
(sha256
(base32 "1d4cvgmxhfczxiq5fr534lmizkhigd15bsx5719r5ds7k7ivisc7"))))
(build-system ruby-build-system)
(home-page "https://github.com/ruby/webrick")
(synopsis "HTTP server toolkit")
(description "WEBrick is an HTTP server toolkit that can be configured as an
HTTPS server, a proxy server, and a virtual-host server.")
(license license:bsd-2)))