guix_mirror_bot pushed a commit to branch master
in repository guix.

commit a9e6f7a38683d3c176ec06882ce5c50c55cc1570
Author: Cayetano Santos <[email protected]>
AuthorDate: Wed Feb 18 16:58:10 2026 +0100

    gnu: Add emacs-verilog-mode.
    
    * gnu/packages/emacs-xyz.scm (emacs-verilog-mode): New variable.
    
    merges guix/guix!6537
    
    Change-Id: Ibc2c2bae360bcea7ff428f99b3e4be39f8a7f0c6
---
 gnu/packages/emacs-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e3e9a086a2..d402c0efa3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -10589,6 +10589,43 @@ It tracks the latest version of the same 
@code{vhdl-mode} package included
 with Emacs.")
     (license license:gpl3+)))
 
+(define-public emacs-verilog-mode
+  ;; No releases, nor tags.
+  (let ((commit "54a0c9b5025aa73f585fc18560d724a60ca2e86c")
+        (revision "0"))
+    (package
+      (name "emacs-verilog-mode")
+      (version (git-version "2026.02.18" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+                (url "https://github.com/veripool/verilog-mode/";)
+                (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1zaf8b41nc3kfh6021lfpsfdpi3yki8sxgz1fpi5yafhb39y7bh6"))))
+      (build-system emacs-build-system)
+      (arguments
+       (list
+        #:tests? #f                     ;requires XEmacs
+        #:test-command #~(list "make" "test")
+        #:exclude #~(list "^batch_prof.el$" "^0test.el$" "^batch_test.el$")
+        #:phases
+        #~(modify-phases %standard-phases
+            (add-before 'install 'install-doc
+              (lambda _
+                (invoke "make" "verilog.info"))))))
+      (native-inputs
+       (list perl texinfo))
+      (home-page "https://github.com/veripool/verilog-mode/";)
+      (synopsis "Major mode for Verilog programming language")
+      (description
+       "This Emacs package provides a mode for the Verilog programming
+language.  It tracks the latest version of the same @code{verilog-mode}
+package included with Emacs.")
+      (license license:gpl3+))))
+
 (define-public emacs-vhdl-ts-mode
   (package
     (name "emacs-vhdl-ts-mode")

Reply via email to