mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add emacs-zig-mode.
* gnu/packages/emacs-xyz.scm (emacs-zig-mode): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
eb2ad29e76
commit
a65cd83008
1 changed files with 30 additions and 0 deletions
|
@ -5517,6 +5517,36 @@ (define-public emacs-inf-ruby
|
|||
appropriate console.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-zig-mode
|
||||
(let ((commit "dbc648f5bca8f3b9ca2cc7827f326f5530115144")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-zig-mode")
|
||||
(version (git-version "0.0.8" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ziglang/zig-mode")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0hwkkwhc5b2pzyqa2h0xw8wxijsrp1fk70fhyv8hx19shzlc4la3"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #t
|
||||
#:emacs emacs
|
||||
#:test-command #~(list "emacs" "--batch"
|
||||
"-l" "zig-mode.el"
|
||||
"-f" "ert-run-tests-batch-and-exit")))
|
||||
(home-page "https://github.com/ziglang/zig-mode/")
|
||||
(synopsis "Zig mode for Emacs")
|
||||
(description
|
||||
"This package provides syntax highlighting and automatic indentation
|
||||
for the Zig programming language in Emacs.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-znc
|
||||
(package
|
||||
(name "emacs-znc")
|
||||
|
|
Loading…
Reference in a new issue