diff options
author | Feng Shu <tumashu@163.com> | 2017-10-04 17:28:32 +0800 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-10-09 15:37:55 -0400 |
commit | 2f1524d083ed4a0a88d83eaf6717664f24bbf9ca (patch) | |
tree | 55838ff97d41fbbd3b13bca26a9e08ec8e09f988 /gnu/packages/emacs.scm | |
parent | 5b38c3e6d81a43c5ba93e8a90d52ae27a9437099 (diff) | |
download | gnu-guix-2f1524d083ed4a0a88d83eaf6717664f24bbf9ca.tar gnu-guix-2f1524d083ed4a0a88d83eaf6717664f24bbf9ca.tar.gz |
gnu: Add emacs-el2org.
* gnu/packages/emacs.scm (emacs-el2org): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 73ccf1bdc8..0b2234bd0c 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") |