guix-commits
[Top][All Lists]
Advanced

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

03/07: gnu: Add emacs-ivy.


From: Ricardo Wurmus
Subject: 03/07: gnu: Add emacs-ivy.
Date: Mon, 20 Jun 2016 05:07:43 +0000 (UTC)

rekado pushed a commit to branch master
in repository guix.

commit 12db29baafb677cba1a93a8b36cceba93d997541
Author: Ricardo Wurmus <address@hidden>
Date:   Sat Jun 18 16:15:44 2016 +0200

    gnu: Add emacs-ivy.
    
    * gnu/packages/emacs.scm (emacs-ivy): New variable.
---
 gnu/packages/emacs.scm |   27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 32eb844..8648ceb 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -1744,6 +1744,33 @@ the Hydra very seamless; it's like a minor mode that 
disables itself
 automatically.")
     (license license:gpl3+)))
 
+(define-public emacs-ivy
+  (package
+    (name "emacs-ivy")
+    (version "0.8.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/abo-abo/swiper/archive/";
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "18nqwl05is71dzswnvpfhlg7b0v3apvbsfxrwab9c0apwavi892q"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-hydra" ,emacs-hydra)))
+    (home-page "http://oremacs.com/swiper/";)
+    (synopsis "Incremental vertical completion for Emacs")
+    (description
+     "This package provides @code{ivy-read} as an alternative to
address@hidden and similar functions.  No attempt is made to determine
+the best candidate.  Instead, the user can navigate candidates with
address@hidden and @code{ivy-previous-line}.  The matching is done by
+splitting the input text by spaces and re-building it into a regular
+expression.")
+    (license license:gpl3+)))
+
 (define-public emacs-clojure-mode
   (package
     (name "emacs-clojure-mode")



reply via email to

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