mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-27 19:35:10 -06:00
gnu: Add emacs-helm-comint.
* gnu/packages/emacs-xyz.scm (emacs-helm-comint): New variable. Merges guix/guix#5290 Change-Id: I38fc5d3ec8eedb12f878125a99dedbc2ae742eeb
This commit is contained in:
parent
f2027e216a
commit
041108bdbd
1 changed files with 30 additions and 1 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue