mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: emacs-deadgrep: Add missing input.
* gnu/packages/emacs-xyz.scm (emacs-deadgrep)[inputs]: Add ripgrep. [arguments]: Add configure phase to set deadgrep-executable to absolute path. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
49e2e75ced
commit
08f03de158
1 changed files with 14 additions and 0 deletions
|
@ -20802,10 +20802,24 @@ (define-public emacs-deadgrep
|
|||
(base32
|
||||
"1vjhrq02l8gvdn2haygzq7277hnhjchs9xrfpcnh76gqip200gx4"))))
|
||||
(build-system emacs-build-system)
|
||||
(inputs `(("ripgrep" ,ripgrep)))
|
||||
(propagated-inputs
|
||||
`(("emacs-dash" ,emacs-dash)
|
||||
("emacs-s" ,emacs-s)
|
||||
("emacs-spinner" ,emacs-spinner)))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'configure
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let ((ripgrep (assoc-ref inputs "ripgrep")))
|
||||
;; .el is read-only in git.
|
||||
(make-file-writable "deadgrep.el")
|
||||
;; Specify the absolute file names of rg so that everything
|
||||
;; works out-of-the-box.
|
||||
(emacs-substitute-variables "deadgrep.el"
|
||||
("deadgrep-executable"
|
||||
(string-append ripgrep "/bin/rg")))))))))
|
||||
(home-page "https://github.com/Wilfred/deadgrep")
|
||||
(synopsis "Frontend for @code{ripgrep}")
|
||||
(description "This package provides an Emacs interface for performing
|
||||
|
|
Loading…
Reference in a new issue