me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-toc-org.

* gnu/packages/emacs-xyz.scm (emacs-toc-org): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Morgan Smith 2020-09-17 17:06:02 -04:00 committed by Nicolas Goaziou
parent 8d0a7a54df
commit 0dba6eadd7
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 21 additions and 0 deletions

View File

@ -2985,6 +2985,27 @@ strings.")
Stack Overflow, Super User, and other StackExchange sites.")
(license license:gpl3+))))
(define-public emacs-toc-org
(package
(name "emacs-toc-org")
(version "1.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/snosov1/toc-org")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0lk0rji85a1c0c5r9an0fdvsm4n4jyixsknmr8ywha3lfmc2p0l8"))))
(build-system emacs-build-system)
(home-page "https://github.com/snosov1/toc-org")
(synopsis "Table of Contents generator for Emacs Org mode")
(description
"This package generates a table of contents when saving in Org and
Markdown files.")
(license license:gpl2+)))
(define-public emacs-toml-mode
(let ((version "0.1.3")
(revision "0")