me
/
guix
Archived
1
0
Fork 0

gnu: Add ruby-debug.

* gnu/packages/ruby.scm (ruby-debug): New variable.
master
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
1 changed files with 21 additions and 0 deletions

View File

@ -5269,6 +5269,27 @@ URIs using the normal URI.parse method.")
(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")