diff options
author | Brett Gilio <brettg@posteo.net> | 2019-11-22 22:32:46 -0600 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-12-02 10:19:30 +0100 |
commit | f45968cbabc476862532b9d92122db3555440cee (patch) | |
tree | 6413caec0e7ffb973db4c754be81c86e19caae83 | |
parent | bdc11c0f3ae0027ce9f3d2c9a01876fa33a8582e (diff) | |
download | patches-f45968cbabc476862532b9d92122db3555440cee.tar patches-f45968cbabc476862532b9d92122db3555440cee.tar.gz |
gnu: Add emacs-org-present.
* gnu/packages/emacs-xyz.scm (emacs-org-present): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-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 5f237677b0..58dcf9cea9 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -20005,3 +20005,27 @@ icon support, git integration, and several other utilities.") (description "This package provides utility functions that allow for Fish-style truncated directories in eshell and various modelines.") (license license:gpl3+))) + +(define-public emacs-org-present + (let ((commit "d13acd70eff6a1608bc991920232146a0de76b21")) + (package + (name "emacs-org-present") + (version "0.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rlister/org-present.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0jz8xiny3rv9ql0p623byz32pip1b82j2c2nyfz2wd114kiabb6q")))) + (build-system emacs-build-system) + (synopsis "Ultra-minimalist presentation minor-mode for Emacs org-mode") + (description "Org-present is an extremely minimalist presentation tool +for Emacs org-mode. Simply layout your presentation with each slide under a +top-level header, start the minor mode with @code{org-present}, and page through +each slide with left/right keys.") + (home-page "https://github.com/rlister/org-present") + (license license:gpl2)))) |