mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: emacs-citre: Search proper ctags program.
* gnu/packages/emacs-xyz.scm (emacs-citre)[arguments]<#:phases>: Do not use search-input-file to search ctags, for it will get ctags of emacs-minimal instead of universal-ctags. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
d16edd03cf
commit
d9a45d2cc8
1 changed files with 5 additions and 1 deletions
|
@ -34170,7 +34170,11 @@ (define-public emacs-citre
|
|||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(emacs-substitute-variables "citre-ctags.el"
|
||||
("citre-ctags-program"
|
||||
(search-input-file inputs "/bin/ctags")))
|
||||
;; XXX: Do not use SEARCH-INPUT-FILE in this place, for it
|
||||
;; will get ctags of emacs-minimal instead of
|
||||
;; universal-ctags.
|
||||
(string-append #$(this-package-input "universal-ctags")
|
||||
"/bin/ctags")))
|
||||
(emacs-substitute-variables "citre-readtags.el"
|
||||
("citre-readtags-program"
|
||||
(search-input-file inputs "/bin/readtags")))
|
||||
|
|
Loading…
Reference in a new issue