me
/
guix
Archived
1
0
Fork 0

gnu: ruby-pry-byebug: Avoid depending on ruby-chandler.

* gnu/packages/ruby.scm (ruby-pry-byebug) [phases]: Add sanitize-dependencies
phase.
[native-inputs]: Remove ruby-chandler, an unmaintained library.
master
Maxim Cournoyer 2023-01-08 22:32:35 -05:00
parent a63d75b104
commit 2eea8aa751
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 7 additions and 6 deletions

View File

@ -7963,14 +7963,15 @@ notes.")
(build-system ruby-build-system)
(arguments
`(#:phases (modify-phases %standard-phases
(add-after 'unpack 'sanitize-dependencies
(lambda _
(substitute* "Rakefile"
((".*chandler/tasks.*") ""))))
(add-before 'check 'set-home
(lambda _
(setenv "HOME" (getcwd))
#t)))))
(native-inputs
(list ruby-chandler ruby-rubocop ruby-simplecov))
(propagated-inputs
(list ruby-byebug ruby-pry))
(setenv "HOME" (getcwd)))))))
(native-inputs (list ruby-rubocop ruby-simplecov))
(propagated-inputs (list ruby-byebug ruby-pry))
(synopsis "Step-by-step debugging and stack navigation in Pry")
(description "This package adds step-by-step debugging and stack
navigation capabilities to @code{pry}, using @code{byebug}.")