diff options
author | Sohom Bhattacharjee <soham.bhattacharjee15@gmail.com> | 2018-04-07 23:36:31 +0530 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-04-07 21:34:42 +0300 |
commit | d4bb4551356c6601a952e89ad8e1b56a3bf2244d (patch) | |
tree | b4a38678c52e8b3cfc2a3568b40b90c115255792 | |
parent | 6e0efe8cd5c85e7b83808b466c626484274def8d (diff) | |
download | patches-d4bb4551356c6601a952e89ad8e1b56a3bf2244d.tar patches-d4bb4551356c6601a952e89ad8e1b56a3bf2244d.tar.gz |
gnu: Add emacs-evil-anzu.
* gnu/packages/emacs.scm (emacs-evil-anzu): New variable.
Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
-rw-r--r-- | gnu/packages/emacs.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index fd0b8acd0e..ac69cfa397 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -7494,3 +7494,24 @@ used with SGML-like languages: XML, HTML, XHTML, XSL, etc.") standard Unix password manager\").") (license license:gpl2+))) +(define-public emacs-evil-anzu + (package + (name "emacs-evil-anzu") + (version "0.03") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/syohex/emacs-evil-anzu" + "/archive/" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "032hh2946z529cizqsg8pm6cpn5qdj8lfk3qskmx6xv3g2ra56ns")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-evil" ,emacs-evil) + ("emacs-anzu" ,emacs-anzu))) + (home-page "https://github.com/syohex/emacs-evil-anzu") + (synopsis "Anzu for evil-mode") + (description "@code{anzu} provides a minor mode that displays the current +match and total match information in the mode-line in various search modes.") + (license license:gpl3+))) |