me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-cmake-mode.

* gnu/packages/cmake.scm (emacs-cmake-mode): New public variable.
master
Oleg Pykhalov 2018-05-18 15:25:39 +03:00
parent 0f5ad3a1bc
commit bbdf36666b
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 17 additions and 0 deletions

View File

@ -206,3 +206,20 @@ and workspaces that can be used in the compiler environment of your choice.")
(inputs
`(("rhash" ,rhash)
,@(package-inputs cmake)))))
(define-public emacs-cmake-mode
(package
(inherit cmake)
(name "emacs-cmake-mode")
(build-system emacs-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'chdir-elisp
;; Elisp directory is not in root of the source.
(lambda _
(chdir "Auxiliary"))))))
(synopsis "Emacs major mode for editing Cmake expressions")
(description "@code{cmakeos-mode} provides an Emacs major mode for editing
Cmake files. It supports syntax highlighting, indenting and refilling of
comments.")))