guix-commits
[Top][All Lists]
Advanced

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

03/06: gnu: Add emacs-helm-swoop.


From: Ludovic Courtès
Subject: 03/06: gnu: Add emacs-helm-swoop.
Date: Thu, 18 May 2017 08:23:08 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 03cc1cf35b73e258f504c2dc4eeb1c8f2f599c13
Author: Kyle Meyer <address@hidden>
Date:   Wed May 17 15:14:31 2017 -0400

    gnu: Add emacs-helm-swoop.
    
    * gnu/packages/emacs.scm (emacs-helm-swoop): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 7e04bb9..66eaea5 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3387,6 +3387,30 @@ considered to be its successor.  Helm sets out to clean 
up the legacy code in
 not tied in the trap of backward compatibility.")
     (license license:gpl3+)))
 
+(define-public emacs-helm-swoop
+  (package
+    (name "emacs-helm-swoop")
+    (version "1.7.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/ShingoFukuyama/helm-swoop/archive/";
+                    version
+                    ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1z34pfi0gsk054pxr906ilaalaw0xz3s536163gf9ykkwmc2356d"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-helm" ,emacs-helm)))
+    (home-page "https://github.com/ShingoFukuyama/helm-swoop";)
+    (synopsis "Filter and jump to lines in an Emacs buffer using Helm")
+    (description
+     "This package builds on the Helm interface to provide several commands
+for search-based navigation of buffers.")
+    (license license:gpl2+)))
+
 (define-public emacs-cider
   (package
     (name "emacs-cider")



reply via email to

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