summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2026-01-01 16:40:35 +0100
committerCayetano Santos <csantosb@inventati.org>2026-01-09 08:46:23 +0100
commit041108bdbd1717ab2be836bcd912abe544f15026 (patch)
treea05beb345d7ebe75508cdcf502a0b9c72c20589f /gnu/packages
parentf2027e216adb2cd74584c77271e8abe491c40aef (diff)
gnu: Add emacs-helm-comint.
* gnu/packages/emacs-xyz.scm (emacs-helm-comint): New variable. Merges guix/guix#5290 Change-Id: I38fc5d3ec8eedb12f878125a99dedbc2ae742eeb
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/emacs-xyz.scm31
1 files changed, 30 insertions, 1 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index aa04b56cf3a..f225070a104 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -154,7 +154,7 @@
;;; Copyright © 2025 Arjan Adriaanse <arjan@adriaan.se>
;;; Copyright © 2025 Remco van 't Veer <remco@remworks.net>
;;; Copyright © 2025 Skylar Hill <stellarskylark@posteo.net>
-;;; Copyright © 2025 Cayetano Santos <csantosb@inventati.org>
+;;; Copyright © 2025, 2026 Cayetano Santos <csantosb@inventati.org>
;;; Copyright © 2025 Lee Thompson <lee.p.thomp@gmail.com>
;;; Copyright @ 2025 Amy Pillow <amypillow@lavache.com>
;;; Copyright © 2025 Kurome <hunt31999@gmail.org>
@@ -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")