mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-16 20:10:39 +02:00
gnu: emacs-lua-mode: Update to current git.
* gnu/packages/emacs.scm (emacs-lua-mode): Update; fixes a very annoying bug with syntax highlighting of multi-line strings.
This commit is contained in:
parent
84d9abe450
commit
69dcad33c8
1 changed files with 20 additions and 18 deletions
|
@ -3561,25 +3561,27 @@ CIDER).")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-lua-mode
|
(define-public emacs-lua-mode
|
||||||
|
(let ((commit "652e299cb967fccca827dda381d61a9c144d97de")
|
||||||
|
(revision "1"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-lua-mode")
|
(name "emacs-lua-mode")
|
||||||
(version "20151025")
|
(version (string-append "20151025." revision "-" (string-take commit 9)))
|
||||||
|
(home-page "https://github.com/immerrr/lua-mode/")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/immerrr/lua-mode/archive/v"
|
(url home-page)
|
||||||
version ".tar.gz"))
|
(commit commit)))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0sbhfny5ib65cnx6xcy6h9bbw27mw034s8m9cca00bhxqaqi6p4v"))))
|
"053025k930wh0lak6rc1973ynfrmm8zsyzfqhhd39x7abkl41hc9"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/immerrr/lua-mode/")
|
|
||||||
(synopsis "Major mode for lua")
|
(synopsis "Major mode for lua")
|
||||||
(description
|
(description
|
||||||
"This Emacs package provides a mode for @uref{https://www.lua.org/,
|
"This Emacs package provides a mode for @uref{https://www.lua.org/,
|
||||||
Lua programing language}.")
|
Lua programing language}.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+))))
|
||||||
|
|
||||||
(define-public emacs-ebuild-mode
|
(define-public emacs-ebuild-mode
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue