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 041108bdbd gnu: Add emacs-helm-comint.
041108bdbd is described below

commit 041108bdbd1717ab2be836bcd912abe544f15026
Author: Cayetano Santos <[email protected]>
AuthorDate: Thu Jan 1 16:40:35 2026 +0100

    gnu: Add emacs-helm-comint.
    
    * gnu/packages/emacs-xyz.scm (emacs-helm-comint): New variable.
    
    Merges guix/guix#5290
    
    Change-Id: I38fc5d3ec8eedb12f878125a99dedbc2ae742eeb
---
 gnu/packages/emacs-xyz.scm | 31 ++++++++++++++++++++++++++++++-
 1 file changed, 30 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index aa04b56cf3..f225070a10 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -154,7 +154,7 @@
 ;;; Copyright © 2025 Arjan Adriaanse <[email protected]>
 ;;; Copyright © 2025 Remco van 't Veer <[email protected]>
 ;;; Copyright © 2025 Skylar Hill <[email protected]>
-;;; Copyright © 2025 Cayetano Santos <[email protected]>
+;;; Copyright © 2025, 2026 Cayetano Santos <[email protected]>
 ;;; Copyright © 2025 Lee Thompson <[email protected]>
 ;;; Copyright @ 2025 Amy Pillow <[email protected]>
 ;;; Copyright © 2025 Kurome <[email protected]>
@@ -32629,6 +32629,35 @@ allows you to obtain translations of texts from Google 
Translate without any
 tracking.")
       (license license:gpl3+))))
 
+(define-public emacs-helm-comint
+  ;; There are no releases or tags.
+  (let ((commit "9215b2aa8f42f62cbda66a1503832abb7f491549")
+        (revision "0"))
+    (package
+      (name "emacs-helm-comint")
+      (version (git-version "0.0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri
+          (git-reference
+            (url "https://github.com/emacs-helm/helm-comint";)
+            (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "029dhxy73lhpbpsw7n3sj8z18c2syy59551pfd31k8kas98ck52j"))))
+      (build-system emacs-build-system)
+      (arguments (list #:tests? #f))    ;no tests
+      (propagated-inputs
+       (list emacs-helm))
+      (home-page "https://github.com/emacs-helm/helm-comint";)
+      (synopsis "Comint prompt navigation for Helm")
+      (description
+       "@code{Helm-comint} provides access to Emacs command interpreter
+prompts through Helm.")
+      (license license:gpl3+))))
+
 (define-public emacs-helm-company
   (package
     (name "emacs-helm-company")

Reply via email to