[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: Add emacs-org-tree-slide.
From: |
Ludovic Courtès |
Subject: |
01/01: gnu: Add emacs-org-tree-slide. |
Date: |
Fri, 2 Feb 2018 09:02:32 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 02267798de00870a3bcfa8d6c528bb06380b4b5e
Author: Ludovic Courtès <address@hidden>
Date: Fri Feb 2 14:47:26 2018 +0100
gnu: Add emacs-org-tree-slide.
Thanks, Pjotr & Ricardo! :-)
* gnu/packages/emacs.scm (org-tree-slide): New variable.
---
gnu/packages/emacs.scm | 24 +++++++++++++++++++++++-
1 file changed, 23 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 9be92ed..d2c8173 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Taylan Ulrich Bayirli/Kammer <address@hidden>
-;;; Copyright © 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <address@hidden>
+;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès
<address@hidden>
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <address@hidden>
;;; Copyright © 2014, 2015, 2016, 2017 Alex Kost <address@hidden>
;;; Copyright © 2015 Federico Beffa <address@hidden>
@@ -6918,3 +6918,25 @@ supports multiple backends such as @code{vlc},
@code{mpg123},
Groovy source files, REPL integration with run-groovy and Grails project
navigation with the grails mode.")
(license license:gpl3+)))
+
+(define-public org-tree-slide
+ (let ((commit "dff8f1a4a64c8dd0a1fde0b0131e2fe186747134")
+ (revision "0"))
+ (package
+ (name "emacs-org-tree-slide")
+ (version (git-version "0.1" revision commit))
+ (home-page "https://github.com/takaxp/org-tree-slide")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference (url home-page) (commit commit)))
+ (sha256
+ (base32
+ "153bg0x7ypla11pq51jmsgzfjklwwnrq56xgpbfhk1j16xwz9hyf"))
+ (file-name (git-file-name name version))))
+ (build-system emacs-build-system)
+ (synopsis "Presentation tool for org-mode")
+ (description
+ "Org-tree-slide provides a slideshow mode to view org-mode files. Use
address@hidden to enter the slideshow mode, and then @kbd{C->} and
address@hidden<} to jump to the next and previous slide.")
+ (license license:gpl3+))))