diff options
author | Morgan Smith <Morgan.J.Smith@outlook.com> | 2021-07-03 09:35:33 -0400 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-07-03 22:45:04 +0200 |
commit | 854e28e0b8e6d7d25e65fde2a7976f8f771bbc94 (patch) | |
tree | 96359881bc2f44f57d96ccc012bfb7124146b938 | |
parent | aa93197e15daf900d2e276bd6072a69d05375414 (diff) | |
download | guix-854e28e0b8e6d7d25e65fde2a7976f8f771bbc94.tar.gz guix-854e28e0b8e6d7d25e65fde2a7976f8f771bbc94.zip |
gnu: Add emacs-muse.
* gnu/packages/emacs-xyz.scm (emacs-muse): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 4bc1cd4b86..2dd51eb0d4 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -13516,6 +13516,26 @@ with CJK languages.") to org file, you can use this tool to write orgify commentary.") (license license:gpl2+))) +(define-public emacs-muse + (package + (name "emacs-muse") + (version "3.20.2") + (source + (origin + (method url-fetch) + (uri (string-append "https://elpa.gnu.org/packages/" + "muse-" version ".tar")) + (sha256 + (base32 "0g2ff6x45x2k5dnkp31sk3bjj92jyhhnar7l5hzn8vp22l0rv8wn")))) + (build-system emacs-build-system) + (home-page "https://www.gnu.org/software/emacs-muse") + (synopsis "Authoring and publishing environment for Emacs") + (description + "Emacs Muse (also known as Muse) is an authoring and publishing +environment for Emacs. It simplifies the process of writing documents and +publishing them to various output formats such as HTML, LaTeX, or PDF.") + (license license:gpl3+))) + (define-public emacs-mustache (package (name "emacs-mustache") |