From 6def2522fc8ee677429f666553f024d3f9b213a1 Mon Sep 17 00:00:00 2001 From: Brian Leung Date: Wed, 17 Jul 2019 21:27:18 +0200 Subject: [PATCH 4/5] gnu: Add emacs-pandoc-mode. * gnu/packages/emacs-xyz.scm (emacs-pandoc-mode): New variable. --- gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a366a5464c..62523ab261 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -13767,6 +13767,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") -- 2.22.0