From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55935) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jP3rD-0000wX-Bj for guix-patches@gnu.org; Thu, 16 Apr 2020 08:43:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jP3rC-0007qP-CN for guix-patches@gnu.org; Thu, 16 Apr 2020 08:43:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54374) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jP3rC-0007qG-9S for guix-patches@gnu.org; Thu, 16 Apr 2020 08:43:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jP3rC-000779-7g for guix-patches@gnu.org; Thu, 16 Apr 2020 08:43:02 -0400 Subject: [bug#40657] gnu: liblinphone: Fix icons for legacy UI. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:55894) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jP3qs-0000gj-9Y for guix-patches@gnu.org; Thu, 16 Apr 2020 08:42:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jP3qr-0007hg-3u for guix-patches@gnu.org; Thu, 16 Apr 2020 08:42:42 -0400 Received: from knopi.disroot.org ([178.21.23.139]:50662) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jP3qq-0007gJ-G6 for guix-patches@gnu.org; Thu, 16 Apr 2020 08:42:41 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id A2288245CB for ; Thu, 16 Apr 2020 14:42:37 +0200 (CEST) Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NpktYmWxSxYz for ; Thu, 16 Apr 2020 14:42:36 +0200 (CEST) Date: Thu, 16 Apr 2020 08:42:26 -0400 From: Raghav Gururajan Message-ID: <20200416084226.4dc32c90.raghavgururajan@disroot.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/.VLYz_.XnYGfi9WrU4GfIUq" 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: 40657@debbugs.gnu.org --MP_/.VLYz_.XnYGfi9WrU4GfIUq Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello Guix! Please find the attached patch to fix icons in legacy user-interface of liblinphone. Regards, RG. --MP_/.VLYz_.XnYGfi9WrU4GfIUq Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-liblinphone-Fix-icons-for-legacy-UI.patch >From 1b250972c7a3f7cb3a7dd6e68cec145286349ec4 Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Thu, 16 Apr 2020 08:37:59 -0400 Subject: [PATCH] gnu: liblinphone: Fix icons for legacy UI. * gnu/packages/linphone.scm (liblinphone): Fix icons for legacy UI. --- gnu/packages/linphone.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm index c9959d7d01..839b3bd9c6 100644 --- a/gnu/packages/linphone.scm +++ b/gnu/packages/linphone.scm @@ -459,7 +459,8 @@ decoding, and rendering.") ("sqlite" ,sqlite) ("udev" ,eudev))) (propagated-inputs - `(("murrine" ,murrine))) ; Required for GTK UI + `(("hicolor-icon-theme" ,hicolor-icon-theme) ; Required for GTK UI + ("murrine" ,murrine))) ; Required for GTK UI (synopsis "Belledonne Communications Softphone Library") (description "Liblinphone is a high-level SIP library integrating all calling and instant messaging features into an unified -- 2.26.0 --MP_/.VLYz_.XnYGfi9WrU4GfIUq--