From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56279) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1if97U-0006yj-6d for guix-patches@gnu.org; Wed, 11 Dec 2019 16:02:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1if97S-0005vo-Ul for guix-patches@gnu.org; Wed, 11 Dec 2019 16:02:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:52751) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1if97S-0005v9-RC for guix-patches@gnu.org; Wed, 11 Dec 2019 16:02:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1if97S-0007sU-Mv for guix-patches@gnu.org; Wed, 11 Dec 2019 16:02:02 -0500 Subject: [bug#38567] [PATCH] gnu: Add gnome-shell-extension-dash-to-panel. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:49976) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1if96y-0006wo-Ds for guix-patches@gnu.org; Wed, 11 Dec 2019 16:01:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1if96w-0004s1-Ss for guix-patches@gnu.org; Wed, 11 Dec 2019 16:01:32 -0500 Received: from latitanza.investici.org ([82.94.249.234]:40381) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1if96w-0004Ub-B8 for guix-patches@gnu.org; Wed, 11 Dec 2019 16:01:30 -0500 From: Giacomo Leidi Date: Wed, 11 Dec 2019 22:01:00 +0100 Message-Id: <20191211210100.24172-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: 38567@debbugs.gnu.org Cc: Giacomo Leidi * gnu/packages/gnome-xyz.scm (gnome-shell-extension-dash-to-panel): New v= ariable. --- gnu/packages/gnome-xyz.scm | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index d05bdf0ac0..47e2d5cc8f 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -151,6 +151,45 @@ faster window switching.") (home-page "https://micheleg.github.io/dash-to-dock/") (license license:gpl2+))) =20 +(define-public gnome-shell-extension-dash-to-panel + (package + (name "gnome-shell-extension-dash-to-panel") + (version "26") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/home-sweet-gnome/dash-to-pa= nel.git") + (commit (string-append "v" version)))) + (sha256 + (base32 + "1phfx2pblygpcvsppsqqqflm7qnz46mqkw29hj0nv2dn69hf4xbc")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f + #:make-flags (list (string-append "INSTALLBASE=3D" + (assoc-ref %outputs "out") + "/share/gnome-shell/extensions"= ) + (string-append "VERSION=3D" + ,(package-version + gnome-shell-extension-dash-to= -panel))) + #:phases + (modify-phases %standard-phases + (delete 'bootstrap) + (delete 'configure)))) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (propagated-inputs + `(("glib" ,glib) + ("glib" ,glib "bin"))) + (synopsis "Icon taskbar for GNOME Shell") + (description "This extension moves the dash into the gnome main +panel so that the application launchers and system tray are combined +into a single panel, similar to that found in KDE Plasma and Windows 7+.= ") + (home-page "https://github.com/home-sweet-gnome/dash-to-panel/") + (license license:gpl2+))) + (define-public gnome-shell-extension-noannoyance (package (name "gnome-shell-extension-noannoyance") --=20 2.24.1