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