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 ;;; Copyright © 2025 Remco van 't Veer ;;; Copyright © 2025 Skylar Hill -;;; Copyright © 2025 Cayetano Santos +;;; Copyright © 2025, 2026 Cayetano Santos ;;; Copyright © 2025 Lee Thompson ;;; Copyright @ 2025 Amy Pillow ;;; Copyright © 2025 Kurome @@ -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")