[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#28327] [PATCH] gnu: Add emacs-bash-completion.
From: |
Jan Nieuwenhuizen |
Subject: |
[bug#28327] [PATCH] gnu: Add emacs-bash-completion. |
Date: |
Sat, 2 Sep 2017 11:11:12 +0200 |
---
gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 612126eb3..f6165ba54 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -59,6 +59,7 @@
#:use-module (guix build-system trivial)
#:use-module (gnu packages)
#:use-module (gnu packages audio)
+ #:use-module (gnu packages bash)
#:use-module (gnu packages code)
#:use-module (gnu packages guile)
#:use-module (gnu packages gtk)
@@ -5444,3 +5445,27 @@ key. Optionally, a mouse pop-up can be added by binding
version of Idris, and some features may rely on the latest Git version of
Idris.")
(license license:gpl3+)))
+
+(define-public emacs-batch-completion
+ (package
+ (name "emacs-bash-completion")
+ (version "20170901.1445")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://melpa.org/packages/bash-completion-"
+ version
+ ".tar"))
+ (sha256
+ (base32
+ "12ggygcfhny5sqq18zn6qyyqbh9314niywjagv9nclwxfa0i9pvr"))))
+ (native-inputs `(("bash" ,bash)))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/szermatt/emacs-bash-completion")
+ (synopsis "BASH completion for the shell buffer")
+ (description
+ "@code{bash-completion} defines dynamic completion hooks for shell-mode
+and shell-command prompts that are based on bash completion.
+")
+ (license license:gpl3+)))
--
Jan Nieuwenhuizen <address@hidden> | GNU LilyPond http://lilypond.org
Freelance IT http://JoyofSource.com | AvatarĀ® http://AvatarAcademy.com
- [bug#28327] [PATCH] gnu: Add emacs-bash-completion.,
Jan Nieuwenhuizen <=