gnomeExtensions.topicons-plus: mark as broken

We forgot to do that last time.
This commit is contained in:
Jan Tojnar 2020-03-22 03:34:35 +01:00
parent a3c93efbc0
commit 2f8e6bdec7
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, glib, gettext }:
{ stdenv, fetchFromGitHub, glib, gnome3, gettext }:
stdenv.mkDerivation rec {
pname = "gnome-shell-extension-topicons-plus";
@ -22,5 +22,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl2;
maintainers = with maintainers; [ eperuffo ];
homepage = https://github.com/phocean/TopIcons-plus;
# Unmaintained and no longer working with GNOME Shell 3.34+
broken = stdenv.lib.versionAtLeast gnome3.gnome-shell.version "3.32";
};
}