diff options
author | Cayetano Santos <csantosb@inventati.org> | 2025-03-02 10:00:01 +0100 |
---|---|---|
committer | Ian Eure <ian@retrospec.tv> | 2025-03-08 15:15:27 -0800 |
commit | 7c7ffd91f5dfccf1c8ee82bf0ffeb7ddad1c58a7 (patch) | |
tree | 0e98b707fe4fe2ff8c126bcc980dc8615f309f66 | |
parent | 11cdebf9df6110eeb64586c6fd2c87e8ff991275 (diff) |
gnu: Add emacs-vhdl-ext.
* gnu/packages/emacs-xyz.scm (emacs-vhdl-ext): New variable.
Change-Id: I24325ed73a2ec884087893f0c3c4eaac760052de
Signed-off-by: Ian Eure <ian@retrospec.tv>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index be633f5f2d..602f58f006 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -9154,6 +9154,39 @@ Also included are keybindings for spec files and Dired buffers, as well as snippets for yasnippet.") (license license:gpl3+)))) +(define-public emacs-vhdl-ext + (package + (name "emacs-vhdl-ext") + (version "0.5.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gmlarumbe/vhdl-ext/") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vgmhsgrh8x8br5grnh1jnf01r2q148xxyf028jgaq09wwjkdvkc")))) + (build-system emacs-build-system) + (arguments + ;; the testing framework test-hdl requires network + `(#:tests? #f + #:test-command '("make"))) + (propagated-inputs (list emacs-ag + emacs-async + emacs-flycheck + emacs-hydra + emacs-lsp-mode + emacs-outshine + emacs-ripgrep + emacs-vhdl-ts-mode)) + (home-page "https://github.com/gmlarumbe/vhdl-ext/") + (synopsis "Extensions to Emacs @code{vhdl-mode}") + (description "This package provides additional features and utilities for +@code{vhdl-mode}, such as snippet selection via @code{hydra}, code navigation, code +formatting, and code folding.") + (license license:gpl3+))) + (define-public emacs-vhdl-mode (package (name "emacs-vhdl-mode") |