unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Robin Templeton <robin@terpri.org>
To: 42021@debbugs.gnu.org
Subject: [bug#42021] [PATCH] Fix flatpak configure option
Date: Tue, 23 Jun 2020 11:41:26 -0400	[thread overview]
Message-ID: <87zh8tyel5.fsf@terpri.org> (raw)

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





             reply	other threads:[~2020-06-23 16:09 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-23 15:41 Robin Templeton [this message]
2020-06-23 21:39 ` bug#42021: [PATCH] Fix flatpak configure option Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87zh8tyel5.fsf@terpri.org \
    --to=robin@terpri.org \
    --cc=42021@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).