guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 70c8fe9ce0f8719a0e4b0863550e60ca314b9ac0
Author: Cayetano Santos <[email protected]>
AuthorDate: Wed Feb 18 17:12:33 2026 +0100
gnu: Add emacs-verilog-ts-mode.
* gnu/packages/emacs-xyz.scm (emacs-verilog-ts-mode): New variable.
merges guix/guix!6537
Change-Id: I06eb7e0deb765dafb00ca338d3c88d7e54b5e72a
---
gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d402c0efa3..a141f80dd6 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -10654,6 +10654,33 @@ which-func, navigation and basic beautify and
completion features to navigate
and edit VHDL files.")
(license license:gpl3+)))
+(define-public emacs-verilog-ts-mode
+ (package
+ (name "emacs-verilog-ts-mode")
+ (version "0.5.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gmlarumbe/verilog-ts-mode/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "19jzdi4n8qj65wxgfr0simnsy2r90rpac5bgkc5bz7w2vfy7rhk3"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list
+ #:tests? #f ;the testing framework, test-hdl, requires network
+ #:test-command #~(list "make")))
+ (propagated-inputs (list tree-sitter-systemverilog))
+ (home-page "https://github.com/gmlarumbe/verilog-ts-mode/")
+ (synopsis "Verilog Tree-sitter mode")
+ (description
+ "Verilog-ts-mode provides syntax highlighting, indentation, imenu,
+which-func, navigation and basic beautify and completion features to navigate
+and edit Verilog files.")
+ (license license:gpl3+)))
+
(define-public emacs-typst-ts-mode
(let ((commit "972dc69d6b8a3f8983f6b8000654f59c8a8d05ba")
(revision "0"))