gnu: Add zsh-autosuggestions.
* gnu/packages/shellutils.scm (zsh-autosuggestions): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
9c4cb1ef4c
commit
8ebd56ea75
1 changed files with 49 additions and 0 deletions
|
@ -34,11 +34,60 @@ (define-module (gnu packages shellutils)
|
||||||
#:use-module (gnu packages ncurses)
|
#:use-module (gnu packages ncurses)
|
||||||
#:use-module (gnu packages readline)
|
#:use-module (gnu packages readline)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
|
#:use-module (gnu packages ruby)
|
||||||
|
#:use-module (gnu packages tmux)
|
||||||
|
#:use-module (gnu packages shells)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system go)
|
#:use-module (guix build-system go)
|
||||||
#:use-module (guix build-system python))
|
#:use-module (guix build-system python))
|
||||||
|
|
||||||
|
(define-public zsh-autosuggestions
|
||||||
|
(package
|
||||||
|
(name "zsh-autosuggestions")
|
||||||
|
(version "0.6.3")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/zsh-users/zsh-autosuggestions.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1h8h2mz9wpjpymgl2p7pc146c1jgb3dggpvzwm9ln3in336wl95c"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("ruby" ,ruby)
|
||||||
|
("ruby-byebug" ,ruby-byebug)
|
||||||
|
("ruby-pry" ,ruby-pry)
|
||||||
|
("ruby-rspec" ,ruby-rspec)
|
||||||
|
("ruby-rspec-wait" ,ruby-rspec-wait)
|
||||||
|
("tmux" ,tmux)
|
||||||
|
("zsh" ,zsh)))
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(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))))))
|
||||||
|
(home-page "https://github.com/zsh-users/zsh-autosuggestions")
|
||||||
|
(synopsis "Fish-like autosuggestions for zsh")
|
||||||
|
(description
|
||||||
|
"Fish-like fast/unobtrusive autosuggestions for zsh. It suggests commands
|
||||||
|
as you type.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public sh-z
|
(define-public sh-z
|
||||||
(package
|
(package
|
||||||
(name "sh-z")
|
(name "sh-z")
|
||||||
|
|
Loading…
Reference in a new issue