1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

gnu: Add emacs-vhdl-ts-mode.

* gnu/packages/emacs-xyz.scm (emacs-vhdl-ts-mode): New variable.

Change-Id: I2bb6405e506c70a01bc7dd4d2d26d1430941129b
Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
Cayetano Santos 2025-02-23 19:09:12 +01:00 committed by Ian Eure
parent 151655356c
commit 12c41b30bd
No known key found for this signature in database
GPG key ID: 8499AC88F1A71CF2

View file

@ -9118,6 +9118,32 @@ It tracks the latest version of the same @code{vhdl-mode} package included
with Emacs.") with Emacs.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-vhdl-ts-mode
(package
(name "emacs-vhdl-ts-mode")
(version "0.2.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/gmlarumbe/vhdl-ts-mode/")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0vqq1819czzliicanv00hhv13zy9apvj4326pnj9n3iqx45q6a96"))))
(build-system emacs-build-system)
(arguments
;; the testing framework, test-hdl, requires network
`(#:tests? #f
#:test-command '("make")))
(home-page "https://github.com/gmlarumbe/vhdl-ts-mode/")
(synopsis "VHDL Tree-sitter mode")
(description
"VHDL-ts-mode provides syntax highlighting, indentation, imenu,
which-func, navigation and basic beautify and completion features to navigate
and edit VHDL files.")
(license license:gpl3+)))
(define-public emacs-mode-line-bell (define-public emacs-mode-line-bell
(package (package
(name "emacs-mode-line-bell") (name "emacs-mode-line-bell")