diff options
author | Christopher Baines <mail@cbaines.net> | 2016-09-13 08:06:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-09-14 16:36:38 +0200 |
commit | 8bebe734ca54bf83ceae4db0a91f09a706562882 (patch) | |
tree | 86127aadc75fd28a2797db8b6452f3b7056751de /gnu/packages/emacs.scm | |
parent | 4a3b6aa5dd625b1697977c065a5d6b4e9ca84148 (diff) | |
download | guix-8bebe734ca54bf83ceae4db0a91f09a706562882.tar guix-8bebe734ca54bf83ceae4db0a91f09a706562882.tar.gz |
gnu: Add emacs-es-mode.
* gnu/packages/emacs.scm (emacs-es-mode): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 3221949691..d8ffacd03b 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1330,6 +1330,34 @@ Expectations, but it can be used in other contexts.") definitions for testing with the Ecukes framework.") (license license:gpl3+))) +(define-public emacs-es-mode + (package + (name "emacs-es-mode") + (version "4.2.0") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/dakrone/es-mode/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "02as82clm553yss7jfjac888308zr1h2229cch4z1yij70j25c8y")))) + (build-system emacs-build-system) + (propagated-inputs + ;; The version of org in Emacs 24.5 is not sufficient, and causes tables + ;; to be rendered incorrectly + `(("emacs-org" ,emacs-org))) + (home-page "https://github.com/dakrone/es-mode") + (synopsis "Major mode for editing Elasticsearch queries") + (description "@code{es-mode} includes highlighting, completion and +indentation support for Elasticsearch queries. Also supported are +@code{es-mode} blocks in @code{org-mode}, for which the results of queries can +be processed through @code{jq}, or in the case of aggregations, can be +rendered in to a table. In addition, there is an @code{es-command-center} +mode, which displays information about Elasticsearch clusters.") + (license license:gpl3+))) + (define-public emacs-expand-region (package (name "emacs-expand-region") |