mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: Add emacs-adoc-mode
* gnu/packages/emacs.scm (emacs-adoc-mode): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
5691898f28
commit
36a71ce04d
1 changed files with 21 additions and 0 deletions
|
@ -11498,3 +11498,24 @@ (define-public emacs-markup-faces
|
|||
common look and feel, or let's say theme, across different markup language modes
|
||||
and 'text viewing modes' respectively.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-adoc-mode
|
||||
(package
|
||||
(name "emacs-adoc-mode")
|
||||
(version "0.6.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://stable.melpa.org/packages/adoc-mode-"
|
||||
version ".el"))
|
||||
(sha256
|
||||
(base32
|
||||
"1c6hrgxxsnl2c19rgjykpm7r4xg9lp6bmk5z6bi7g8pqlrgwffcy"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-markup-faces" ,emacs-markup-faces)))
|
||||
(home-page "https://github.com/sensorflo/adoc-mode/wiki")
|
||||
(synopsis "AsciiDoc mode for Emacs")
|
||||
(description "This package provides an Emacs major mode for editing AsciiDoc
|
||||
files. It focuses on highlighting the document to improve readability.")
|
||||
(license license:gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue