me
/
guix
Archived
1
0
Fork 0

gnu: zsh-autosuggestions: Remove ruby-byebug dependency.

ruby-byebug is for Ruby 2, so it's good to move away from using it.

* gnu/packages/shellutils.scm (zsh-autosuggestions)[native-inputs]: Remove
ruby-byebug.
[arguments]: Update style.
Christopher Baines 2023-06-28 08:46:49 +01:00
parent af583ce504
commit 7ee445d5a1
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 19 additions and 20 deletions

View File

@ -188,33 +188,32 @@ in Zsh intelligently.")
(build-system gnu-build-system)
(native-inputs
(list ruby
ruby-byebug
ruby-pry
ruby-rspec
ruby-rspec-wait
tmux
zsh))
(arguments
'(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-tests
(lambda _
;; Failing tests since tmux-3.2a
(delete-file "spec/options/buffer_max_size_spec.rb")))
(delete 'configure)
(replace 'check ; Tests use ruby's bundler; instead execute rspec directly.
(lambda _
(setenv "TMUX_TMPDIR" (getenv "TMPDIR"))
(setenv "SHELL" (which "zsh"))
(invoke "rspec")))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(zsh-plugins
(list
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-tests
(lambda _
;; Failing tests since tmux-3.2a
(delete-file "spec/options/buffer_max_size_spec.rb")))
(delete 'configure)
(replace 'check ; Tests use ruby's bundler; instead execute rspec directly.
(lambda _
(setenv "TMUX_TMPDIR" (getenv "TMPDIR"))
(setenv "SHELL" (which "zsh"))
(invoke "rspec")))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(zsh-plugins
(string-append out "/share/zsh/plugins/zsh-autosuggestions")))
(invoke "make" "all")
(install-file "zsh-autosuggestions.zsh" zsh-plugins)
#t))))))
(invoke "make" "all")
(install-file "zsh-autosuggestions.zsh" zsh-plugins)))))))
(home-page "https://github.com/zsh-users/zsh-autosuggestions")
(synopsis "Fish-like autosuggestions for zsh")
(description