guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add emacs-isearch+.


From: guix-commits
Subject: 01/01: gnu: Add emacs-isearch+.
Date: Sun, 3 Mar 2019 09:39:54 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit d2f555f59b7089176f92b674f8b78a6b9c3f4bcf
Author: Brian Leung <address@hidden>
Date:   Thu Feb 21 01:14:59 2019 +0100

    gnu: Add emacs-isearch+.
    
    * gnu/packages/emacs-xyz.scm (emacs-isearch+): New variable.
    
    Signed-off-by: Ricardo Wurmus <address@hidden>
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 86dbfe6..dda5500 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -43,6 +43,7 @@
 ;;; Copyright © 2018 Pierre Langlois <address@hidden>
 ;;; Copyright © 2018, 2019 Brett Gilio <address@hidden>
 ;;; Copyright © 2019 Dimakakos Dimos <address@hidden>
+;;; Copyright © 2019 Brian Leung <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -11131,6 +11132,29 @@ my_thing reload} all the time.  It offers a consistent 
UI over different init
 systems.")
     (license license:gpl3+)))
 
+(define-public emacs-isearch+
+  (let ((commit "95e49af9dbf0254e095a11f115e101b52659520a")
+        (revision "1"))
+    (package
+      (name "emacs-isearch+")
+      (version (git-version "0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/emacsmirror/isearch-plus.git";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "0xhd9zgknf4lvzyf4apirpd7spb1hbpzkvys00a7pkmd0vvahk0v"))))
+      (build-system emacs-build-system)
+      (home-page "https://www.emacswiki.org/emacs/isearch+.el";)
+      (synopsis "Extensions to @code{isearch.el}")
+      (description "This package extends @code{isearch} with advice, dynamic
+filters, highlighting of regexp group levels, and more.")
+      (license license:gpl2+))))
+
 (define-public emacs-esh-autosuggest
   (package
     (name "emacs-esh-autosuggest")



reply via email to

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