mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add emacs-meson-mode.
* gnu/packages/emacs-xyz.scm (emacs-meson-mode): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
790ada9168
commit
80cd90ef30
1 changed files with 22 additions and 0 deletions
|
@ -22671,6 +22671,28 @@ (define-public emacs-no-littering
|
|||
files and subdirectories when appropriate.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-meson-mode
|
||||
(package
|
||||
(name "emacs-meson-mode")
|
||||
(version "0.2")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/wentasah/meson-mode.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1720b3hpfqd989zrgcns51jbjrv4vzl9di9mccl55vkmkbqzfin0"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/wentasah/meson-mode")
|
||||
(synopsis "Major mode for Meson build system files")
|
||||
(description
|
||||
"This is an Emacs major mode for Meson build system files. Syntax
|
||||
highlighting works reliably. Indentation works too, but there are probably
|
||||
cases where it breaks.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-message-x
|
||||
;; Use the latest commit, as there are no tagged releases.
|
||||
(let ((commit "5524de7bbfdd8749c110f48de5afb024d9f83133")
|
||||
|
|
Loading…
Reference in a new issue