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 2bdbeec918 gnu: Add emacs-geiser-hoot.
2bdbeec918 is described below

commit 2bdbeec9186d815e67740f7f3d806e37bb2fbde6
Author: David Thompson <[email protected]>
AuthorDate: Tue Feb 24 16:45:54 2026 -0500

    gnu: Add emacs-geiser-hoot.
    
    * gnu/packages/emacs-xyz.scm (emacs-geiser-hoot): New variable.
    
    Change-Id: I5de595ccc3161cfb455b89e9e80e85fa5ac71435
    Signed-off-by: Ian Eure <[email protected]>
---
 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 8a0864add9..97d8a8bf66 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -225,6 +225,7 @@
   #:use-module (gnu packages gawk)
   #:use-module (gnu packages golang-apps)
   #:use-module (gnu packages guile)
+  #:use-module (gnu packages guile-xyz)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages gnome)
   #:use-module (gnu packages graphviz)
@@ -1156,6 +1157,42 @@ powered by @uref{https://agentclientprotocol.com/, Agent 
Client Protocol} (ACP).
 a generic Scheme interaction mode for the GNU Emacs editor.")
     (license license:bsd-3)))
 
+(define-public emacs-geiser-hoot
+  (package
+    (name "emacs-geiser-hoot")
+    (version "0.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://codeberg.org/spritely/geiser-hoot";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1zhg4sv40gdcpynnk6rgqnq4di2pgx542xf80y12md1dllvfbg3i"))))
+    (build-system emacs-build-system)
+    (arguments
+     (list
+      #:include
+      #~(cons "^src/" %default-include)
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'patch-geiser-hoot-binary
+            (lambda* (#:key inputs #:allow-other-keys)
+              (substitute* "geiser-hoot.el"
+                (("(geiser-hoot-binary) \"hoot\"" _ sym)
+                 (format #f "~a ~s"
+                         sym
+                         (search-input-file inputs "bin/hoot")))))))))
+    (inputs (list guile-hoot))
+    (propagated-inputs (list emacs-geiser))
+    (home-page "https://codeberg.org/spritely/geiser-hoot";)
+    (synopsis "Hoot support for Geiser")
+    (description
+     "This package adds support for the Hoot Scheme implementation to
+Geiser, a generic Scheme interaction mode for the GNU Emacs editor.")
+    (license license:bsd-3)))
+
 (define-public emacs-ac-geiser
   (let ((commit "93818c936ee7e2f1ba1b315578bde363a7d43d05")
         (revision "0"))

Reply via email to