unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#42021] [PATCH] Fix flatpak configure option
@ 2020-06-23 15:41 Robin Templeton
  2020-06-23 21:39 ` bug#42021: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Robin Templeton @ 2020-06-23 15:41 UTC (permalink / raw)
  To: 42021

Currently, running an installed flatpak program (e.g. "flatpak run
com.github.micahflee.torbrowser-launcher") results in this error:

"bwrap: execvp xdg-dbus-proxy: No such file or directory"

Setting the full xdg-dbug-proxy path during configuration prevents this
error and allows flatpak programs to be run normally.

From 401c68d4d1581bc93eb67ff1f4feb21014dc513f Mon Sep 17 00:00:00 2001
From: Robin Templeton <robin@terpri.org>
Date: Tue, 23 Jun 2020 11:17:07 -0400
Subject: [PATCH] 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.
---
 gnu/packages/package-management.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm
index 2cd7886011..44321240e9 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -1152,7 +1152,9 @@ the boot loader configuration.")
        (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
-- 
2.26.2





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#42021: [PATCH] Fix flatpak configure option
  2020-06-23 15:41 [bug#42021] [PATCH] Fix flatpak configure option Robin Templeton
@ 2020-06-23 21:39 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2020-06-23 21:39 UTC (permalink / raw)
  To: Robin Templeton; +Cc: 42021-done

Hi Robin,

Robin Templeton <robin@terpri.org> skribis:

>>From 401c68d4d1581bc93eb67ff1f4feb21014dc513f Mon Sep 17 00:00:00 2001
> From: Robin Templeton <robin@terpri.org>
> Date: Tue, 23 Jun 2020 11:17:07 -0400
> Subject: [PATCH] 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.

Good catch, applied!

Ludo’.




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-06-23 21:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-23 15:41 [bug#42021] [PATCH] Fix flatpak configure option Robin Templeton
2020-06-23 21:39 ` bug#42021: " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).