guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add emacs-cmake-font-lock.


From: guix-commits
Subject: 01/03: gnu: Add emacs-cmake-font-lock.
Date: Tue, 24 Sep 2019 23:57:46 -0400 (EDT)

leungbk pushed a commit to branch master
in repository guix.

commit 430ac9ccb43faacd24610d8dbdf8e6f070baaeb7
Author: Brian Leung <address@hidden>
Date:   Wed Sep 25 03:08:22 2019 +0200

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 855ca73..21ce76d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -16280,6 +16280,32 @@ mode for editing gnuplot scripts.  It provides syntax 
highlighting,
 indentation and a command to plot the file.")
     (license license:gpl3+)))
 
+(define-public emacs-cmake-font-lock
+  (let ((commit "e0ceaaae19c13b66f781512e3295bfc6707b56f4")
+        (revision "1"))
+    (package
+      (name "emacs-cmake-font-lock")
+      (version (git-version "0.1.5" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url 
"https://github.com/Lindydancer/cmake-font-lock.git";)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "03gsyn95dlmsn15bl353bphi3qy7ccn5bss3f7n97kf38bllh0yf"))))
+      (build-system emacs-build-system)
+      (native-inputs
+       `(("emacs-faceup" ,emacs-faceup)))
+      (arguments
+       `(#:include (cons "^admin\\/" %default-include)))
+      (home-page "https://github.com/Lindydancer/cmake-font-lock";)
+      (synopsis "Advanced type-aware syntax-highlighting for CMake")
+      (description "This package highlights function arguments in CMake
+according to their use.")
+      (license license:gpl3+))))
+
 (define-public emacs-dtrt-indent
   (package
     (name "emacs-dtrt-indent")



reply via email to

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