guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add emacs-anaphora.


From: guix-commits
Subject: 01/02: gnu: Add emacs-anaphora.
Date: Thu, 17 Jan 2019 16:50:16 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 60ceff7ef530dd9ac8d9e9e65dfead0f3b8a22f8
Author: Nicolas Goaziou <address@hidden>
Date:   Thu Jan 17 22:48:48 2019 +0100

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a12a4e2..e4f8045 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -681,6 +681,31 @@ can take association lists, hash tables, and in some cases 
vectors (where the
 index is considered the key).")
     (license license:gpl3+)))
 
+(define-public emacs-anaphora
+  (package
+    (name "emacs-anaphora")
+    (version "1.0.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/rolandwalker/anaphora.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "11fgiy029sqz7nvdm7dcal95lacryz9zql0x5h05z48nrrcl4bib"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/rolandwalker/anaphora/";)
+    (synopsis "Anaphoric expressions for Emacs Lisp")
+    (description "@code{emacs-anaphora} implements anaphoric expressions for
+Emacs Lisp.
+
+Anaphoric expressions implicitly create one or more temporary variables which
+can be referred to during the expression.  This technique can improve clarity
+in certain cases.  It also enables recursion for anonymous functions.")
+    (license license:public-domain)))
+
 
 ;;;
 ;;; Web browsing.



reply via email to

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