2017-07-04 17:56:06 +01:00
|
|
|
{ stdenv, fetchFromGitHub, glib, gettext, bash }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gnome-shell-extension-topicons-plus-${version}";
|
2017-11-09 12:26:13 +00:00
|
|
|
version = "21";
|
2017-07-04 17:56:06 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "phocean";
|
|
|
|
repo = "TopIcons-plus";
|
2017-11-09 12:26:13 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "15p61krd7lcmgr1d4s2ydfjy3pyq79pq5100xzy6dln1538901m3";
|
2017-07-04 17:56:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
|
|
|
|
makeFlags = [ "INSTALL_PATH=$(out)/share/gnome-shell/extensions" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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 ];
|
|
|
|
homepage = https://github.com/phocean/TopIcons-plus;
|
|
|
|
};
|
|
|
|
}
|