diff options
| author | jgart <jgart@dismail.de> | 2026-02-17 21:50:36 -0500 |
|---|---|---|
| committer | jgart <jgart@dismail.de> | 2026-02-17 21:56:42 -0500 |
| commit | 8fe8871e6e9922f9d660662b04eaba5747694fd3 (patch) | |
| tree | f08077ab2f76fdfb2540d64e69efc787855960d3 /gnu | |
| parent | 76eda0f90a08ff9ac92940c24b56c9487fbab0fe (diff) | |
gnu: Add emacs-forth-mode.
* gnu/packages/emacs-xyz.scm (emacs-forth-mode): New variable.
Change-Id: I7113f87a2961c66708f4464fdcb382a8dacf61ba
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 6dbbde65916..57cad163a06 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -36943,6 +36943,25 @@ debug server. It is similar to the LSP but provides integration with Debug server.") (license license:gpl3+))) +(define-public emacs-forth-mode + (package + (name "emacs-forth-mode") + (version "0.2") + (source (origin + (method url-fetch) + (uri (string-append "https://elpa.nongnu.org/nongnu/forth-mode-" + version ".tar")) + (sha256 + (base32 + "04xcvjzvl4pgx48l2pzil7s2iqqbf86z57wv76ahp4sd1xigpfqc")))) + (build-system emacs-build-system) + (arguments + (list #:tests? #f)) ; There is no test suite in this release. + (home-page "http://github.com/larsbrinkhoff/forth-mode") + (synopsis "Programming language mode for Forth") + (description "Programming language mode for Forth.") + (license license:gpl3))) + (define-public emacs-fortran-tags (package (name "emacs-fortran-tags") |
