gnomeExtensions.topicons-plus: 22 -> 27 (#118306)

This commit is contained in:
Eduardo Sánchez Muñoz 2021-04-02 21:31:50 +02:00 committed by GitHub
parent 45372cebc7
commit bbf3ea1067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub, glib, gnome3, gettext }: { lib, stdenv, fetchFromGitHub, glib, gettext }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gnome-shell-extension-topicons-plus"; pname = "gnome-shell-extension-topicons-plus";
version = "22"; version = "27";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "phocean"; owner = "phocean";
repo = "TopIcons-plus"; repo = "TopIcons-plus";
rev = "v${version}"; rev = version;
sha256 = "196s1gdir52gbc444pzrb5l7gn5xr5vqk5ajqaiqryqlmp3i8vil"; sha256 = "1p3jlvs4zgnrvy8am7myivv4rnnshjp49kg87rd22qqyvcz51ykr";
}; };
buildInputs = [ glib ]; buildInputs = [ glib ];
@ -21,10 +21,8 @@ stdenv.mkDerivation rec {
meta = with lib; { meta = with lib; {
description = "Brings all icons back to the top panel, so that it's easier to keep track of apps running in the backround"; description = "Brings all icons back to the top panel, so that it's easier to keep track of apps running in the backround";
license = licenses.gpl2; license = licenses.gpl2Only;
maintainers = with maintainers; [ eperuffo ]; maintainers = with maintainers; [ eperuffo ];
homepage = "https://github.com/phocean/TopIcons-plus"; homepage = "https://github.com/phocean/TopIcons-plus";
# Unmaintained and no longer working with GNOME Shell 3.34+
broken = lib.versionAtLeast gnome3.gnome-shell.version "3.32";
}; };
} }