2021-04-05 15:23:46 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, glib, gettext }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gnome-shell-extension-topicons-plus";
|
2021-04-05 15:23:46 +00:00
|
|
|
version = "27";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "phocean";
|
|
|
|
repo = "TopIcons-plus";
|
2021-04-05 15:23:46 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "1p3jlvs4zgnrvy8am7myivv4rnnshjp49kg87rd22qqyvcz51ykr";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
|
|
|
|
makeFlags = [ "INSTALL_PATH=$(out)/share/gnome-shell/extensions" ];
|
|
|
|
|
2020-05-15 21:57:56 +00:00
|
|
|
uuid = "TopIcons@phocean.net";
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +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";
|
2021-04-05 15:23:46 +00:00
|
|
|
license = licenses.gpl2Only;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ eperuffo ];
|
|
|
|
homepage = "https://github.com/phocean/TopIcons-plus";
|
|
|
|
};
|
|
|
|
}
|