mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: aerc: Don't rely on input labels.
* gnu/packages/mail.scm (aerc)[arguments]: Test for …/bin/zoxide directly. Change-Id: I6492bd969048a548c45504c0897b851f369277b9
This commit is contained in:
parent
4b9b1ec787
commit
4729cef6bd
1 changed files with 5 additions and 6 deletions
|
@ -5086,12 +5086,11 @@ (define-public aerc
|
|||
(string-append
|
||||
"\"" (search-input-file inputs "bin/sh")
|
||||
"\"")))
|
||||
(when (assoc-ref inputs "zoxide")
|
||||
(substitute* "commands/z.go"
|
||||
(("\"zoxide\"")
|
||||
(string-append
|
||||
"\"" (search-input-file inputs "bin/zoxide")
|
||||
"\""))))
|
||||
(let ((zoxide (search-input-file inputs "bin/zoxide")))
|
||||
(when zoxide
|
||||
(substitute* "commands/z.go"
|
||||
(("\"zoxide\"")
|
||||
(string-append "\"" zoxide "\"")))))
|
||||
(substitute* (list "lib/crypto/gpg/gpg.go"
|
||||
"lib/crypto/gpg/gpg_test.go"
|
||||
"lib/crypto/gpg/gpgbin/keys.go"
|
||||
|
|
Loading…
Reference in a new issue