gnu: Add ruby-debug.

* gnu/packages/ruby.scm (ruby-debug): New variable.
This commit is contained in:
Maxim Cournoyer 2023-01-09 14:19:24 -05:00
parent 067c4df6f3
commit d4cd510db7
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -5269,6 +5269,27 @@ (define-public ruby-data_uri
(home-page "https://github.com/dball/data_uri")
(license license:expat)))
(define-public ruby-debug
(package
(name "ruby-debug")
(version "1.7.2")
(source (origin
(method url-fetch)
(uri (rubygems-uri "debug" version))
(sha256
(base32
"0x59508j69w9p275gabysv521n210pd3n060gqfgsiqjms1h0ldf"))))
(build-system ruby-build-system)
(arguments (list #:test-target "test_all"))
(propagated-inputs (list ruby-irb ruby-reline))
(synopsis "Debugging functionality for Ruby")
(description "Debugging functionality for Ruby. This is completely
rewritten debug.rb which was contained by the ancient Ruby versions. It is
included with Ruby itself, but this package is made available so that the
latest version can be made available independently from Ruby.")
(home-page "https://github.com/ruby/debug")
(license license:bsd-2)))
(define-public ruby-deep-merge
(package
(name "ruby-deep-merge")