mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: exercism: Install shell completions.
* gnu/packages/education.scm (exercism)[arguments]: Add a phase to build and install shell completions.
This commit is contained in:
parent
461b1e4909
commit
4b5ac6b226
1 changed files with 22 additions and 1 deletions
|
@ -1065,7 +1065,28 @@ (define-public exercism
|
|||
(arguments
|
||||
`(#:import-path "github.com/exercism/cli/exercism"
|
||||
#:unpack-path "github.com/exercism/cli"
|
||||
#:install-source? #f))
|
||||
#:install-source? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'install-completions
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(bash (string-append out "/etc/bash_completion.d/exercism"))
|
||||
(fish (string-append
|
||||
out "/share/fish/vendor_completions.d/exercism.fish"))
|
||||
(zsh (string-append out "/share/zsh/site-functions/_exercism")))
|
||||
(mkdir-p (dirname bash))
|
||||
(with-output-to-file bash
|
||||
(lambda ()
|
||||
(invoke (string-append out "/bin/exercism") "completion" "bash")))
|
||||
(mkdir-p (dirname fish))
|
||||
(with-output-to-file fish
|
||||
(lambda ()
|
||||
(invoke (string-append out "/bin/exercism") "completion" "fish")))
|
||||
(mkdir-p (dirname zsh))
|
||||
(with-output-to-file zsh
|
||||
(lambda ()
|
||||
(invoke (string-append out "/bin/exercism") "completion" "zsh")))))))))
|
||||
(inputs
|
||||
`(("github.com/blang/semver" ,go-github-com-blang-semver)
|
||||
("github.com/spf13/cobra" ,go-github-com-spf13-cobra)
|
||||
|
|
Loading…
Reference in a new issue