2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, glib, gnome3, gettext }:
|
2017-07-04 16:56:06 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gnome-shell-extension-topicons-plus";
|
2018-12-12 13:39:50 +00:00
|
|
|
version = "22";
|
2017-07-04 16:56:06 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "phocean";
|
|
|
|
repo = "TopIcons-plus";
|
2017-11-09 12:26:13 +00:00
|
|
|
rev = "v${version}";
|
2018-12-12 13:39:50 +00:00
|
|
|
sha256 = "196s1gdir52gbc444pzrb5l7gn5xr5vqk5ajqaiqryqlmp3i8vil";
|
2017-07-04 16:56:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
|
|
|
|
makeFlags = [ "INSTALL_PATH=$(out)/share/gnome-shell/extensions" ];
|
|
|
|
|
2018-08-30 09:09:58 +00:00
|
|
|
uuid = "TopIcons@phocean.net";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-07-04 16:56:06 +00:00
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ eperuffo ];
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/phocean/TopIcons-plus";
|
2020-03-22 02:34:35 +00:00
|
|
|
# Unmaintained and no longer working with GNOME Shell 3.34+
|
2021-01-15 13:21:58 +00:00
|
|
|
broken = lib.versionAtLeast gnome3.gnome-shell.version "3.32";
|
2017-07-04 16:56:06 +00:00
|
|
|
};
|
|
|
|
}
|