From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58173) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eumij-00033S-SZ for guix-patches@gnu.org; Sat, 10 Mar 2018 17:12:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eumig-0003YM-MX for guix-patches@gnu.org; Sat, 10 Mar 2018 17:12:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:46641) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eumig-0003YD-I3 for guix-patches@gnu.org; Sat, 10 Mar 2018 17:12:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eumig-0006Ks-9M for guix-patches@gnu.org; Sat, 10 Mar 2018 17:12:02 -0500 Subject: [bug#30765] [PATCH] gnu: qtox: Propagate qtsvg and fix misplaced comma (unquote). Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58040) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eumhc-0002vw-9D for guix-patches@gnu.org; Sat, 10 Mar 2018 17:10:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eumhZ-0003Ne-18 for guix-patches@gnu.org; Sat, 10 Mar 2018 17:10:56 -0500 Received: from mout01.posteo.de ([185.67.36.65]:48745) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eumhY-0003Ml-LN for guix-patches@gnu.org; Sat, 10 Mar 2018 17:10:52 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id B48EC20ED8 for ; Sat, 10 Mar 2018 23:10:44 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 3zzJNM4KzCz9rxM for ; Sat, 10 Mar 2018 23:10:43 +0100 (CET) From: Diego Nicola Barbato Date: Sat, 10 Mar 2018 23:10:42 +0100 Message-ID: <87vae3r38d.fsf@GlaDOS.home> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 30765@debbugs.gnu.org --=-=-= Content-Type: text/plain This patch fixes an issue where qTox failed to display some icons by moving qtsvg to propagated-inputs. I also took the liberty of fixing a misplaced comma (unquote). --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-qtox-Propagate-qtsvg-and-fix-misplaced-comma-unq.patch >From 016bd5e32c3f3aa44468b324e8c652ff44b3c1a1 Mon Sep 17 00:00:00 2001 From: Diego Nicola Barbato Date: Sat, 10 Mar 2018 22:09:12 +0100 Subject: [PATCH] gnu: qtox: Propagate qtsvg and fix misplaced comma (unquote). * gnu/packages/messaging.scm (qtox)[inputs]: Move qtsvg to propagated-inputs. [inputs]: Fix misplaced comma (unquote). --- gnu/packages/messaging.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index b6323c39b..51be46d5c 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -875,9 +875,11 @@ instant messenger with audio and video chat capabilities.") (("__TIME__") "\"\"") (("TIMESTAMP") "\"\"")) #t))))) + (propagated-inputs + `(("qtsvg" ,qtsvg))) (inputs `(("ffmpeg" ,ffmpeg) - ("filteraudio", filteraudio) + ("filteraudio" ,filteraudio) ("glib" ,glib) ("gtk+" ,gtk+-2) ("libsodium" ,libsodium) @@ -890,7 +892,6 @@ instant messenger with audio and video chat capabilities.") ("openal" ,openal) ("qrencode" ,qrencode) ("qtbase" ,qtbase) - ("qtsvg" ,qtsvg) ("sqlcipher" ,sqlcipher))) (native-inputs `(("pkg-config" ,pkg-config) -- 2.16.2 --=-=-=--