From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:59494) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jEFVc-0000Ie-M8 for guix-patches@gnu.org; Tue, 17 Mar 2020 12:56:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jEFVb-0005yq-27 for guix-patches@gnu.org; Tue, 17 Mar 2020 12:56:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:33525) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jEFVa-0005pE-ER for guix-patches@gnu.org; Tue, 17 Mar 2020 12:56:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jEFVa-0007yl-Aj for guix-patches@gnu.org; Tue, 17 Mar 2020 12:56:02 -0400 Subject: [bug#40102] [PATCH] gnu packages gnome-xyz: Add topicons-redux Resent-Message-ID: Date: Tue, 17 Mar 2020 16:55:27 +0000 From: Ekaitz Zarraga Message-ID: In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Ekaitz Zarraga Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Leo Prikler Cc: "40102@debbugs.gnu.org" <40102@debbugs.gnu.org> > Hi Ekaitz, > > > - (home-page > > - "https://gitlab.com/pop-planet/TopIcons-Redux/-/tree/master";) > > > > > > You should probably drop "-/tree/master" and uncomment the bracket. > Otherwise LGTM. > > Regards, > Leo The comment was accidentally introduced in the email. I don't really know h= ow tbh. Thanks for the comment, here's the updated patch: >From 4bbe7c5061a04d07ad9b85ff63d32379f34f8dc8 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Tue, 17 Mar 2020 13:54:24 +0100 Subject: [PATCH] gnu packages gnome-xyz: Add topicons-redux --- gnu/packages/gnome-xyz.scm | 48 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index b8cd32db08..abb8dab4f7 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -4,6 +4,7 @@ ;;; Copyright =C2=A9 2019 Giacomo Leidi ;;; Copyright =C2=A9 2020 Alex Griffin ;;; Copyright =C2=A9 2020 Jack Hill +;;; Copyright =C2=A9 2020 Ekaitz Zarraga ;;; ;;; This file is part of GNU Guix. ;;; @@ -26,6 +27,7 @@ #:use-module (guix build-system copy) #:use-module (guix build-system meson) #:use-module (guix git-download) + #:use-module (guix download) #:use-module (guix packages) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages base) @@ -146,6 +148,52 @@ GNOME Shell.") (home-page "https://github.com/ubuntu/gnome-shell-extension-appindicat= or/") (license license:gpl2+))) +(define-public gnome-shell-extension-topicons-redux + (package + (name "gnome-shell-extension-topicons-redux") + (version "6") + (source + (origin + (method url-fetch) + (uri + (string-append + "https://gitlab.com/pop-planet/TopIcons-Redux/-/archive/" + version "/TopIcons-Redux-" version ".tar.gz")) + (sha256 + (base32 "0diwb6l4wy4dwpwkls4cq8v0dbi99q194jfl39sv7f7mnbjjgi82"))= )) + (build-system gnu-build-system) + (native-inputs + `(("glib" ,glib "bin"))) + (arguments + `(#:tests? #f + #:phases + (modify-phases + %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (invoke "make" + "install" + (string-append + "INSTALL_PATH=3D" + out + "/share/gnome-shell/extensions")))= ))))) + + (home-page + "https://gitlab.com/pop-planet/TopIcons-Redux/") + (synopsis "Displays legacy tray icons in the GNOME Shell top panel. +Rewritten fork of TopIcons Plus.") + (description "Many applications, such as chat clients, downloaders, an= d +some media players, are meant to run long-term in the background even afte= r you +close their window. These applications remain accessible by adding an icon= to +the GNOME Shell Legacy Tray. However, the Legacy Tray was removed in GNOME +3.26. TopIcons Redux brings those icons back into the top panel so that it= 's +easier to keep track of apps running in the +backround.") + (license license:gpl2))) + (define-public gnome-shell-extension-dash-to-dock (package (name "gnome-shell-extension-dash-to-dock") -- 2.25.1