mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: bash-completion: Modify to modify-phases.
* gnu/packages/bash.scm (bash-completion): Use modify-phases instead of alist-cons-after.
This commit is contained in:
parent
cccb4d2652
commit
aa67d3c546
1 changed files with 23 additions and 23 deletions
|
@ -289,29 +289,29 @@ (define-public bash-completion
|
|||
(build-system gnu-build-system)
|
||||
(native-inputs `(("util-linux" ,util-linux)))
|
||||
(arguments
|
||||
`(#:phases (alist-cons-after
|
||||
'install 'remove-redundant-completions
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
;; Util-linux comes with a bunch of completion files for
|
||||
;; its own commands which are more sophisticated and
|
||||
;; up-to-date than those of bash-completion. Remove those
|
||||
;; from bash-completion.
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(util-linux (assoc-ref inputs "util-linux"))
|
||||
(completions (string-append out
|
||||
"/share/bash-completion"
|
||||
"/completions"))
|
||||
(already (find-files
|
||||
(string-append
|
||||
util-linux
|
||||
"/etc/bash_completion.d"))))
|
||||
(with-directory-excursion completions
|
||||
(for-each (lambda (file)
|
||||
(when (file-exists? file)
|
||||
(delete-file file)))
|
||||
(map basename already)))
|
||||
#t))
|
||||
%standard-phases)))
|
||||
`(#:phases (modify-phases %standard-phases
|
||||
(add-after
|
||||
'install 'remove-redundant-completions
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
;; Util-linux comes with a bunch of completion files for
|
||||
;; its own commands which are more sophisticated and
|
||||
;; up-to-date than those of bash-completion. Remove those
|
||||
;; from bash-completion.
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(util-linux (assoc-ref inputs "util-linux"))
|
||||
(completions (string-append out
|
||||
"/share/bash-completion"
|
||||
"/completions"))
|
||||
(already (find-files
|
||||
(string-append
|
||||
util-linux
|
||||
"/etc/bash_completion.d"))))
|
||||
(with-directory-excursion completions
|
||||
(for-each (lambda (file)
|
||||
(when (file-exists? file)
|
||||
(delete-file file)))
|
||||
(map basename already)))
|
||||
#t))))))
|
||||
(synopsis "Bash completions for common commands")
|
||||
(description
|
||||
"This package provides extensions that allow Bash to provide adapted
|
||||
|
|
Loading…
Reference in a new issue