diff options
author | Rostislav Svoboda <Rostislav.Svoboda@gmail.com> | 2023-03-08 16:05:40 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-03-08 16:05:40 +0100 |
commit | 78ae8c6a40bbdeefb1868b1c1ccd453a172de562 (patch) | |
tree | e8e3cf2de08908fece88950816bacb60da77525e /gnu | |
parent | 6e4b997cdfb12b657f525949409c3b761ab4d901 (diff) | |
download | guix-78ae8c6a40bbdeefb1868b1c1ccd453a172de562.tar.gz |
gnu: Add emacs-font-lock+.
* gnu/packages/emacs-xyz.scm (emacs-font-lock+): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 67455112f1..f4992369fe 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -4005,6 +4005,28 @@ reviewed at regular interval. After each review, the next review interval is calculated based on how well you remembered the contents of the card.") (license license:gpl3+)))) +(define-public emacs-font-lock+ + (let ((commit "aa1c82d05c9222b09099a0ccd7468e955497940c") + (revision "0")) + (package + (name "emacs-font-lock+") + (version (git-version "0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacsmirror/font-lock-plus") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1369r5p6s9c561g5f772lvrpcqxhvyhqd9yk0853hyl03ags9gvs")))) + (build-system emacs-build-system) + (home-page "https://github.com/emacsmirror/font-lock-plus") + (synopsis "Enhancements to standard Font Lock library") + (description + "This package provides enhancements to standard Font Lock library.") + (license license:gpl3+)))) + (define-public emacs-font-lock-studio (let ((commit "12c35967b31233e06946c70627aa3152dacfe261") (revision "1")) |