gnu: emacs-bash-completion: Update to 3.1.0-0.c5eaeed.
* gnu/packages/emacs-xyz.scm (emacs-bash-completion): Update to 3.1.0-0.c5eaeed. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
b55241fa67
commit
f424c3123d
1 changed files with 38 additions and 34 deletions
|
@ -15937,20 +15937,24 @@ messaging service.")
|
||||||
Slack client.")
|
Slack client.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
|
||||||
(define-public emacs-bash-completion
|
(define-public emacs-bash-completion
|
||||||
|
;; Need to use a newer commit than the latest version in order to support
|
||||||
|
;; completion interfaces that alters the candidate list provided by the
|
||||||
|
;; package
|
||||||
|
(let ((commit "c5eaeed156ab906190c662d491269230967104b1")
|
||||||
|
(revision "0"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-bash-completion")
|
(name "emacs-bash-completion")
|
||||||
(version "3.1.0")
|
(version (git-version "3.1.0" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/szermatt/emacs-bash-completion")
|
(url "https://github.com/szermatt/emacs-bash-completion")
|
||||||
(commit (string-append "v" version))))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "11j2k3irixp47r2iglxdmjphahqhgnxg98n2xwagwzyq99lsamj4"))))
|
(base32 "0r221iirqsbz13s76r68i496izbirrvcw8ql3wsh205zmxa3jqg1"))))
|
||||||
(inputs (list bash))
|
(inputs (list bash))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -15970,8 +15974,8 @@ Slack client.")
|
||||||
(synopsis "Bash completion for the shell buffer")
|
(synopsis "Bash completion for the shell buffer")
|
||||||
(description
|
(description
|
||||||
"@code{bash-completion} defines dynamic completion hooks for shell-mode
|
"@code{bash-completion} defines dynamic completion hooks for shell-mode
|
||||||
and shell-command prompts that are based on Bash completion.")
|
and shell-command prompts that are based on Bash completion.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+))))
|
||||||
|
|
||||||
(define-public emacs-easy-kill
|
(define-public emacs-easy-kill
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue