guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: Add emacs-el2org.


From: Leo Famulari
Subject: 02/03: gnu: Add emacs-el2org.
Date: Mon, 9 Oct 2017 15:38:28 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 2f1524d083ed4a0a88d83eaf6717664f24bbf9ca
Author: Feng Shu <address@hidden>
Date:   Wed Oct 4 17:28:32 2017 +0800

    gnu: Add emacs-el2org.
    
    * gnu/packages/emacs.scm (emacs-el2org): New variable.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/emacs.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 73ccf1b..0b2234b 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -4982,6 +4982,26 @@ containing words from the rime project.")
 and cangjie.")
     (license license:gpl2+)))
 
+(define-public emacs-el2org
+  (package
+    (name "emacs-el2org")
+    (version "0.6.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/tumashu/el2org/archive/v";
+                    version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0gd3km1swwvg2w0kdi7370f54wgrflxn63gjgssfjc1iyc9sbqwq"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/tumashu/el2org";)
+    (synopsis "Convert Emacs-lisp file to org file")
+    (description "El2org is a simple tool, which can convert Emacs-lisp file
+to org file, you can use this tool to write orgify commentary.")
+    (license license:gpl2+)))
+
 (define-public emacs-mustache
   (package
     (name "emacs-mustache")



reply via email to

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