From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:58466) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jP48h-0007lA-7C for guix-patches@gnu.org; Thu, 16 Apr 2020 09:01:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jP48c-0002GE-7N for guix-patches@gnu.org; Thu, 16 Apr 2020 09:01:07 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54401) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jP48c-0002G4-3Z for guix-patches@gnu.org; Thu, 16 Apr 2020 09:01:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jP48c-0007ZL-2P for guix-patches@gnu.org; Thu, 16 Apr 2020 09:01:02 -0400 Subject: [bug#40659] gnu: transmission: Fix icons for GUI. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:58425) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jP48M-0007hT-Dv for guix-patches@gnu.org; Thu, 16 Apr 2020 09:00:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jP48L-000232-49 for guix-patches@gnu.org; Thu, 16 Apr 2020 09:00:46 -0400 Received: from knopi.disroot.org ([178.21.23.139]:40148) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jP48K-00022F-Kw for guix-patches@gnu.org; Thu, 16 Apr 2020 09:00:45 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 2CBB020735 for ; Thu, 16 Apr 2020 15:00:43 +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 D_kvEb9Ix0Kt for ; Thu, 16 Apr 2020 15:00:41 +0200 (CEST) Date: Thu, 16 Apr 2020 09:00:23 -0400 From: Raghav Gururajan Message-ID: <20200416090023.33a422bd.raghavgururajan@disroot.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/xOFDl3yEhT66mseB1Zds/0H" 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: 40659@debbugs.gnu.org --MP_/xOFDl3yEhT66mseB1Zds/0H Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello Guix! Please find the attached patch to fix icons for transmission's graphical user interface. Regards, RG. --MP_/xOFDl3yEhT66mseB1Zds/0H Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-transmission-Fix-icons-for-GUI.patch >From 9ab623acb7f70a49f965202c475e18d70e9f8933 Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Thu, 16 Apr 2020 08:57:46 -0400 Subject: [PATCH] gnu: transmission: Fix icons for GUI. * gnu/packages/bittorrent.scm (transmission): Fix icons for GUI. --- gnu/packages/bittorrent.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index 03c7fe4515..f71e3be383 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -114,6 +114,8 @@ (native-inputs `(("intltool" ,intltool) ("pkg-config" ,pkg-config))) + (propagated-inputs + `(("adwaita-icon-theme" ,adwaita-icon-theme))) ; Required for GUI. (home-page "https://transmissionbt.com/") (synopsis "Fast and easy BitTorrent client") (description -- 2.26.0 --MP_/xOFDl3yEhT66mseB1Zds/0H--