guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: guix-commits
Subject: 02/02: gnu: Add emacs-lisp-extra-font-lock.
Date: Tue, 12 Mar 2019 04:28:21 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit 75dabac633bb9a33efbebf859f8aa4bb3b9582b2
Author: Pierre Neidhardt <address@hidden>
Date:   Tue Mar 12 09:28:01 2019 +0100

    gnu: Add emacs-lisp-extra-font-lock.
    
    * gnu/packages/emacs-xyz.scm (emacs-lisp-extra-font-lock): New variable.
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a82d6e9..064b8cb 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -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+))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]