From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56415) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ir9U7-0007xc-4P for guix-patches@gnu.org; Mon, 13 Jan 2020 18:51:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ir9U6-0006Bl-3b for guix-patches@gnu.org; Mon, 13 Jan 2020 18:51:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:54434) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ir9U6-0006BZ-0M for guix-patches@gnu.org; Mon, 13 Jan 2020 18:51:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ir9U5-0006Gl-Vq for guix-patches@gnu.org; Mon, 13 Jan 2020 18:51:01 -0500 Subject: [bug#39125] [PATCH] gnu: termite: Open links properly without xdg-utils in profile Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:56367) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ir9Ts-0007x5-E8 for guix-patches@gnu.org; Mon, 13 Jan 2020 18:50:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ir9Tr-0005sq-8N for guix-patches@gnu.org; Mon, 13 Jan 2020 18:50:48 -0500 Received: from pat.zlotemysli.pl ([37.59.186.212]:43974) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ir9Tq-0005kn-UH for guix-patches@gnu.org; Mon, 13 Jan 2020 18:50:47 -0500 Date: Tue, 14 Jan 2020 00:50:37 +0100 From: Jakub =?UTF-8?Q?K=C4=85dzio=C5=82ka?= Message-ID: <20200113235037.idus3ggrytfryq5q@zdrowyportier.kadziolka.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39125@debbugs.gnu.org * gnu/packages/terminals.scm (termite)[inputs]: Add XDG-UTILS. [arguments](patch-xdg-open): New phase. --- gnu/packages/terminals.scm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index b5c3b69f53..dae14aee8f 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2019 Julien Lepiller ;;; Copyright © 2019 Pierre Langlois ;;; Copyright © 2019 Brett Gilio +;;; Copyright © 2020 Jakub Kądziołka ;;; ;;; This file is part of GNU Guix. ;;; @@ -138,6 +139,11 @@ configurable through a graphical wizard.") (arguments `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'patch-xdg-open + (lambda _ + (substitute* "termite.cc" + (("xdg-open") (which "xdg-open"))) + #t)) (delete 'configure)) #:tests? #f ;; This sets the destination when installing the necessary terminal @@ -150,6 +156,7 @@ configurable through a graphical wizard.") (inputs `(("vte" ,vte-ng) ("gtk+" ,gtk+) + ("xdg-utils" ,xdg-utils) ("ncurses" ,ncurses))) (native-inputs `(("pkg-config" ,pkg-config))) -- 2.24.1