From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:47031) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iuLr9-0008RL-HH for guix-patches@gnu.org; Wed, 22 Jan 2020 14:40:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iuLr8-0001EI-9v for guix-patches@gnu.org; Wed, 22 Jan 2020 14:40:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:45386) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iuLr8-0001EE-6t for guix-patches@gnu.org; Wed, 22 Jan 2020 14:40:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iuLr8-0005yO-2r for guix-patches@gnu.org; Wed, 22 Jan 2020 14:40:02 -0500 Subject: [bug#39243] [PATCH] gnu: Add gnome-shell-extension-appindicator. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:46966) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iuLqJ-0008NS-DG for guix-patches@gnu.org; Wed, 22 Jan 2020 14:39:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iuLqI-0000s8-0D for guix-patches@gnu.org; Wed, 22 Jan 2020 14:39:11 -0500 Received: from devianza.investici.org ([198.167.222.108]:57013) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iuLqH-0000qz-Gh for guix-patches@gnu.org; Wed, 22 Jan 2020 14:39:09 -0500 From: Giacomo Leidi Date: Wed, 22 Jan 2020 20:38:30 +0100 Message-Id: <20200122193830.11180-1-goodoldpaul@autistici.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 39243@debbugs.gnu.org Cc: Giacomo Leidi * gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator): New va= riable. --- gnu/packages/gnome-xyz.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 0fc721b7d3..2d4fc25593 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -114,6 +114,40 @@ which haven't been updated for some years. The new = app icons are ported from the Obsidian icon theme.") (license license:gpl3))) =20 +(define-public gnome-shell-extension-appindicator + (package + (name "gnome-shell-extension-appindicator") + (version "30") + (source (origin + (method git-fetch) + (uri (git-reference + (url + "https://github.com/ubuntu/gnome-shell-extension-ap= pindicator.git") + (commit (string-append "v" version)))) + (sha256 + (base32 + "1fjhx23jqwv3d0smwhnjvc35gqhwk9p5f96ic22pfax653cn5vh8")) + (file-name (git-file-name name version)))) + (build-system trivial-build-system) + (arguments + '(#:modules ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let* ((source (assoc-ref %build-inputs "source")) + (install-dir (string-append (assoc-ref %outputs "out") + "/share/gnome-shell/extensio= ns" + "/appindicatorsupport@rgcjon= as.gmail.com"))) + (mkdir-p install-dir) + (copy-recursively source install-dir) + #t)))) + (synopsis "Adds KStatusNotifierItem support to GNOME Shell") + (description "This extension integrates Ubuntu AppIndicators +and KStatusNotifierItems (KDE's successor of the systray) into +GNOME Shell.") + (home-page "https://github.com/ubuntu/gnome-shell-extension-appindic= ator/") + (license license:gpl2+))) + (define-public gnome-shell-extension-dash-to-dock (package (name "gnome-shell-extension-dash-to-dock") --=20 2.25.0