guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add emacs-phi-search.


From: guix-commits
Subject: 01/02: gnu: Add emacs-phi-search.
Date: Sun, 18 Aug 2019 09:08:46 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit e076ca86dba3ef344d0d3907a808698ae8211b35
Author: Brian Leung <address@hidden>
Date:   Wed Aug 14 06:35:31 2019 +0200

    gnu: Add emacs-phi-search.
    
    * gnu/packages/emacs-xyz.scm (emacs-phi-search): New variable.
    
    Signed-off-by: Oleg Pykhalov <address@hidden>
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 4a8820f..7ed3418 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3460,6 +3460,28 @@ completion candidate when using the Company text 
completion framework.")
 a customizable list.")
       (license license:gpl3+))))
 
+(define-public emacs-phi-search
+  (let ((commit "9a089b8271cb1cff9640848850298c9ec855286c")
+        (revision "1"))
+    (package
+      (name "emacs-phi-search")
+      (version (git-version "20160630" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/zk-phi/phi-search.git";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1gr5plcbrfdc4pglfj905s89hf8x0kc083h30wcnd81bnw9jwz1x"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/zk-phi/phi-search";)
+      (synopsis "Interactive search compatible with @code{multiple-cursors}")
+      (description "This package can be used with @code{multiple-cursors} to
+provide an incremental search that moves all fake cursors in sync.")
+      (license license:gpl2+))))
+
 (define-public emacs-multiple-cursors
   (package
     (name "emacs-multiple-cursors")



reply via email to

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