guix-patches
[Top][All Lists]
Advanced

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

[bug#53622] [PATCH 6/8] gnu: Add emacs-ox-reveal.


From: pinoaffe
Subject: [bug#53622] [PATCH 6/8] gnu: Add emacs-ox-reveal.
Date: Sat, 29 Jan 2022 14:27:17 +0100
User-agent: mu4e 1.6.10; emacs 27.2

* gnu/packages/emacs-xyz.scm (emacs-ox-reveal): New variable.
---
 gnu/packages/emacs-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7e31e58ee7..fad6612dd2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -781,6 +781,35 @@ (define-public emacs-org-chef
 that it can automatically extract recipes from websites like allrecipes.com.")
      (license license:expat))))
 
+(define-public emacs-ox-reveal
+  (let ((commit "07900f29fada581d0e1b0f1e2057cea5e1ba8ce1")
+        (revision "0"))
+  (package
+    (name "emacs-ox-reveal")
+    (version (git-version "0" revision commit))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/hexmode/ox-reveal";)
+             (commit commit)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "132b0llxda8jivabvm2ssbrdny7q2q1c0z4ikb12k4kia3fvg6cg"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     (list emacs-org))
+    (home-page "https://github.com/hexmode/ox-reveal";)
+    (synopsis
+      "reveal.js Presentation Back-End for Org Export Engine")
+    (description
+     "org-reveal exports your Org documents to @code{reveal.js} presentations.
+
+With org-reveal, you can create beautiful presentations with 3D effects from
+simple but powerful Org contents.")
+    (license license:gpl3+))))
+
 (define-public emacs-project
   (package
     (name "emacs-project")
-- 
2.34.0






reply via email to

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