mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: flatpak: Fix xdg-dbus-proxy configure flag.
* gnu/packages/package-management.scm (flatpak) [arguments]: Pass the full "xdg-dbus-proxy" program path to the "--with-system-dbus-proxy" configure flag. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
6f233040d3
commit
753d75d40b
1 changed files with 3 additions and 1 deletions
|
@ -1152,7 +1152,9 @@ (define-public flatpak
|
|||
(string-append "--with-system-bubblewrap="
|
||||
(assoc-ref %build-inputs "bubblewrap")
|
||||
"/bin/bwrap")
|
||||
"--with-system-dbus-proxy")
|
||||
(string-append "--with-system-dbus-proxy="
|
||||
(assoc-ref %build-inputs "xdg-dbus-proxy")
|
||||
"/bin/xdg-dbus-proxy"))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-tests
|
||||
|
|
Loading…
Reference in a new issue