guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: Add emacs-eprime.


From: Alex Kost
Subject: 03/03: gnu: Add emacs-eprime.
Date: Mon, 4 Jul 2016 07:14:21 +0000 (UTC)

alezost pushed a commit to branch master
in repository guix.

commit 7034791aa25db02e392495c44d68a5de937bdf7a
Author: Roel Janssen <address@hidden>
Date:   Sun Jul 3 18:53:33 2016 +0200

    gnu: Add emacs-eprime.
    
    * gnu/packages/emacs.scm (emacs-eprime): New variable.
    
    Signed-off-by: Alex Kost <address@hidden>
---
 gnu/packages/emacs.scm |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 5796b97..db88df1 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -2076,6 +2076,28 @@ Emacs default configuration in uncontroversial ways that 
nearly everyone can
 agree upon.")
     (license license:gpl3+)))
 
+(define-public emacs-eprime
+  (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f"))
+    (package
+      (name "emacs-eprime")
+      (version (string-append "20140513-" (string-take commit 7)))
+      (source (origin
+                (method url-fetch)
+                (uri (string-append "https://raw.githubusercontent.com";
+                                    "/AndrewHynes/eprime-mode/"
+                                    commit "/eprime-mode.el"))
+                (file-name (string-append "eprime-" version ".el"))
+                (sha256
+                 (base32
+                  "0v68lggkyq7kbcr9zyi573m2g2x251xy3jadlaw8kx02l8krwq8d"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/AndrewHynes/eprime-mode";)
+      (synopsis "E-prime checking mode for Emacs")
+      (description "This package provides an E-prime checking mode for Emacs
+that highlights non-conforming text.  The subset of the English language called
+E-Prime forbids the use of the \"to be\" form to strengthen your writing.")
+      (license license:gpl3+))))
+
 (define-public emacs-smex
   (package
     (name "emacs-smex")



reply via email to

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