guix-commits
[Top][All Lists]
Advanced

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

24/88: gnu: Add emacs-loop.


From: Oleg Pykhalov
Subject: 24/88: gnu: Add emacs-loop.
Date: Wed, 2 May 2018 13:21:08 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit b836c6500a7bdc81c6dcfcb27aa61d347bb5ad74
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 18:58:43 2018 +0300

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

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 77f003c..a4163f8 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -8613,3 +8613,24 @@ that allows you to filter the tail with unix pipes and 
highlight the
 contents of the tailed file.  Works locally or on remote files using
 tramp.")
       (license license:gpl3+))))
+
+(define-public emacs-loop
+  (package
+    (name "emacs-loop")
+    (version "1.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/Wilfred/loop.el/archive/";
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1z3rhh3zyjabz36410yz0lp4a0qwwj0387as662wvx3z9y54jia9"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/Wilfred/loop.el";)
+    (synopsis "Imperative loop structures for Emacs")
+    (description "Loop structures familiar to users of other languages.  This
+library adds a selection of popular loop structures as well as break and
+continue.")
+    (license license:gpl3+)))



reply via email to

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