diff options
author | Brian Leung <bkleung89@gmail.com> | 2019-07-17 21:27:18 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-07-18 15:36:58 +0200 |
commit | 0574bc8aa5932b36f171c374c34ab367f1837a32 (patch) | |
tree | c1697b70055825d4b857162e09c3d2099a2b7995 /gnu | |
parent | a513a4cd1748e64f7ecbde6d9d98b4ffac423bf3 (diff) | |
download | patches-0574bc8aa5932b36f171c374c34ab367f1837a32.tar patches-0574bc8aa5932b36f171c374c34ab367f1837a32.tar.gz |
gnu: Add emacs-pandoc-mode.
* gnu/packages/emacs-xyz.scm (emacs-pandoc-mode): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index c48d3209d9..8b9d3263b7 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -13769,6 +13769,30 @@ searches with @code{ripgrep}.") text in neighboring sections.") (license license:gpl3+)))) +(define-public emacs-pandoc-mode + (package + (name "emacs-pandoc-mode") + (version "2.27.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/joostkremers/pandoc-mode") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "04bqc7mhgkfks3nsvimd3rrriv4nqbksmv5ahlbbd03aqa2b0vrv")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-hydra" ,emacs-hydra))) + (home-page "https://github.com/joostkremers/pandoc-mode") + (synopsis "Minor mode for interacting with Pandoc") + (description "This package provides a Hydra menu for interacting with the +Pandoc, the document-conversion tool.") + (license license:bsd-3))) + (define-public emacs-org-brain (package (name "emacs-org-brain") |