guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add emacs-engine-mode.


From: Arun Isaac
Subject: 01/01: gnu: Add emacs-engine-mode.
Date: Thu, 10 Aug 2017 13:08:01 -0400 (EDT)

arunisaac pushed a commit to branch master
in repository guix.

commit f262f44683490dc0673f491e7d8bf67455238d13
Author: Oleg Pykhalov <address@hidden>
Date:   Tue Aug 8 13:00:18 2017 +0300

    gnu: Add emacs-engine-mode.
    
    * gnu/packages/emacs.scm (emacs-engine-mode): New variable.
    
    Signed-off-by: Arun Isaac <address@hidden>
---
 gnu/packages/emacs.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 5f33436..bb5d234 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -5310,3 +5310,24 @@ the nick color and the background color
 @end itemize\n")
     (home-page "https://github.com/leathekd/erc-hl-nicks";)
     (license license:gpl3+)))
+
+(define-public emacs-engine-mode
+  (package
+    (name "emacs-engine-mode")
+    (version "2.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/hrs/engine-mode/archive/";
+                           "v" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1vm4p7pcp1vnwwxvps1bhm7i7hkabqqxl898knxf2hqvxys76684"))))
+    (build-system emacs-build-system)
+    (synopsis "Minor mode for defining and querying search engines")
+    (description "@code{engine-mode} is a global minor mode for Emacs.  It
+enables you to easily define search engines, bind them to keybindings, and
+query them from the comfort of your editor.")
+    (home-page "https://github.com/hrs/engine-mode";)
+    (license license:gpl3+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]