mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: Add emacs-toc-org.
* gnu/packages/emacs-xyz.scm (emacs-toc-org): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
8d0a7a54df
commit
0dba6eadd7
1 changed files with 21 additions and 0 deletions
|
@ -2985,6 +2985,27 @@ (define-public emacs-sx
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue