This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 8fe8871e6e gnu: Add emacs-forth-mode.
8fe8871e6e is described below

commit 8fe8871e6e9922f9d660662b04eaba5747694fd3
Author: jgart <[email protected]>
AuthorDate: Tue Feb 17 21:50:36 2026 -0500

    gnu: Add emacs-forth-mode.
    
    * gnu/packages/emacs-xyz.scm (emacs-forth-mode): New variable.
    
    Change-Id: I7113f87a2961c66708f4464fdcb382a8dacf61ba
---
 gnu/packages/emacs-xyz.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 6dbbde6591..57cad163a0 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")

Reply via email to