gnu: emacs-fish-completion: Improve style.

* gnu/packages/emacs-xyz.scm (emacs-fish-completion):
  [arguments]<phases>: Improve 'configure phase style.

Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
Nicolas Graves 2025-05-18 10:16:19 +02:00 committed by Liliana Marie Prikler
parent 113e5d2b03
commit 6a2862186e
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -30577,20 +30577,16 @@ cohesion with the Emacs Way.")
(base32
"17lqip1i1rrsvxzz4bx9rqf1fvwd3hriwg3sj6qxmfc8pylnp37q"))))
(build-system emacs-build-system)
(inputs (list fish))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'configure
(lambda* (#:key inputs outputs #:allow-other-keys)
(let ((fish (assoc-ref inputs "fish")))
;; Specify the absolute file names of the various
;; programs so that everything works out-of-the-box.
(lambda* (#:key inputs #:allow-other-keys)
(make-file-writable "fish-completion.el")
(emacs-substitute-variables
"fish-completion.el"
(emacs-substitute-variables "fish-completion.el"
("fish-completion-command"
(string-append fish "/bin/fish")))))))))
(search-input-file inputs "bin/fish"))))))))
(inputs (list fish))
(home-page
"https://gitlab.com/Ambrevar/emacs-fish-completion")
(synopsis "Fish completion for Emacs pcomplete")