From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:44338) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jS5ZO-0008QI-SQ for guix-patches@gnu.org; Fri, 24 Apr 2020 17:09:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jS5ZG-0004fj-8K for guix-patches@gnu.org; Fri, 24 Apr 2020 17:09:10 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:46549) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jS5ZF-0004ev-Rt for guix-patches@gnu.org; Fri, 24 Apr 2020 17:09:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jS5ZF-0001MR-KX for guix-patches@gnu.org; Fri, 24 Apr 2020 17:09:01 -0400 Subject: [bug#40659] gnu: transmission: Fix icons for GUI. (v3) References: <20200416090023.33a422bd.raghavgururajan@disroot.org> In-Reply-To: <20200416090023.33a422bd.raghavgururajan@disroot.org> Resent-Message-ID: Date: Fri, 24 Apr 2020 17:08:21 -0400 From: Raghav Gururajan Message-ID: <20200424170821.11df200d.raghavgururajan@disroot.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/Wzdc3NbrOs4mvEX1na+PI=+" 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_/Wzdc3NbrOs4mvEX1na+PI=+ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline --MP_/Wzdc3NbrOs4mvEX1na+PI=+ Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-transmission-Fix-icons-for-GUI.patch >From 952cb241751727246d3a09ce36f479be8db20544 Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Fri, 24 Apr 2020 17:02:26 -0400 Subject: [PATCH] gnu: transmission: Fix icons for GUI. * gnu/packages/bittorrent.scm (transmission): Fix icons for GUI. Since the adwaita icon theme is hard-coded in the application, there is no choice for the user anyway. So let's add adwaita-icon-theme to inputs. --- gnu/packages/bittorrent.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index 03c7fe4515..e403b7b83b 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -103,7 +103,8 @@ '("applications" "icons" "pixmaps"))) #t))))) (inputs - `(("inotify-tools" ,inotify-tools) + `(("adwaita-icon-theme" ,adwaita-icon-theme) ; Hard-coded theme + ("inotify-tools" ,inotify-tools) ("libevent" ,libevent) ("curl" ,curl) ("cyrus-sasl" ,cyrus-sasl) -- 2.26.1 --MP_/Wzdc3NbrOs4mvEX1na+PI=+--