gnu: emacs-markup-faces: Fix build.
* gnu/packages/emacs-xyz.scm (emacs-markup-faces)[source]: Use GitHub as upstream, MELPA Stable failed us… [description]: Appease linter and fix capitalization.master
parent
6bc3e3f9ba
commit
f7bbce48ab
|
@ -26305,26 +26305,29 @@ show it; if it's not, we want to hide whatever fold the cursor is in.")
|
||||||
(license license:gpl2+))))
|
(license license:gpl2+))))
|
||||||
|
|
||||||
(define-public emacs-markup-faces
|
(define-public emacs-markup-faces
|
||||||
(package
|
(let ((commit "98a807ed82473eb41c6a201ed7ef816d6bcd67b0"))
|
||||||
(name "emacs-markup-faces")
|
(package
|
||||||
(version "1.0.0")
|
(name "emacs-markup-faces")
|
||||||
(source
|
(version "1.0.0")
|
||||||
(origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://stable.melpa.org/packages/markup-faces-"
|
(method git-fetch)
|
||||||
version ".el"))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://github.com/sensorflo/markup-faces")
|
||||||
(base32
|
(commit commit)))
|
||||||
"124dxbaa25fwxnpwsygpz7pw6da6dnnw7y2lic3jf8rgz7lw4v32"))))
|
(file-name (git-file-name name version))
|
||||||
(build-system emacs-build-system)
|
(sha256
|
||||||
(home-page "https://github.com/sensorflo/markup-faces")
|
(base32
|
||||||
(synopsis "Collection of Emacs faces for markup language modes")
|
"1w6i1m7xdr9cijnmdj35cl99r12vl83qws0qlfhrgvisilshnr27"))))
|
||||||
(description "emacs-markup-faces is like font-lock-faces, but tailored for
|
(build-system emacs-build-system)
|
||||||
markup languages instead programming languages. The sub group markup-faces-text
|
(home-page "https://github.com/sensorflo/markup-faces")
|
||||||
is also intended for 'text viewing modes' such as info or (wo)man. This gives a
|
(synopsis "Collection of Emacs faces for markup language modes")
|
||||||
common look and feel, or let's say theme, across different markup language modes
|
(description "Markup Faces is like @code{font-lock-faces}, but tailored
|
||||||
and 'text viewing modes' respectively.")
|
for markup languages instead programming languages. The sub-group
|
||||||
(license license:gpl3+)))
|
@code{markup-faces-text} is also intended for text viewing modes such as Info
|
||||||
|
or Woman. This gives a common look and feel across different markup language
|
||||||
|
modes and text viewing modes respectively.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-adoc-mode
|
(define-public emacs-adoc-mode
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue