gnu: Add emacs-lisp-extra-font-lock.

* gnu/packages/emacs-xyz.scm (emacs-lisp-extra-font-lock): New variable.
master
Pierre Neidhardt 2019-03-12 09:28:01 +01:00
parent b6180f93bd
commit 75dabac633
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 22 additions and 0 deletions

View File

@ -13328,3 +13328,25 @@ completion systems for selecting commands, such as ido and ivy.")
dummy Latin text into a buffer. This can be useful if you need to produce
paragraphs or pages of text for testing purposes.")
(license license:gpl3+))))
(define-public emacs-lisp-extra-font-lock
(let ((commit "4605eccbe1a7fcbd3cacf5b71249435413b4db4f"))
(package
(name "emacs-lisp-extra-font-lock")
(version (git-version "0.0.6" "1" commit))
(home-page "https://github.com/Lindydancer/lisp-extra-font-lock")
(source (origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"152vcp3mdlv33jf5va4rinl1d0k960gnfhbrqqrafazgx9j3ya8w"))))
(build-system emacs-build-system)
(synopsis "Highlight bound variables and quoted expressions in Emacs")
(description "This package highlight the location where local variables
is created (bound, for example, by let) as well as quoted and backquoted
constant expressions.")
(license license:gpl3+))))