2019-04-22 01:25:39 +01:00
|
|
|
{ stdenv, fetchFromGitHub, gnome3 }:
|
2018-01-31 03:26:56 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gnome-shell-extension-icon-hider";
|
2019-04-22 01:25:39 +01:00
|
|
|
version = "23";
|
2018-01-31 03:26:56 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ikalnytskyi";
|
|
|
|
repo = "gnome-shell-extension-icon-hider";
|
|
|
|
rev = "v${version}";
|
2019-04-22 01:25:39 +01:00
|
|
|
sha256 = "18c8zkdrmdbghqqz7b450vhgpykgz25mgigwn2nggcb2lxmvm9ks";
|
2018-01-31 03:26:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
uuid = "icon-hider@kalnitsky.org";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/share/gnome-shell/extensions
|
|
|
|
cp -r ${uuid} $out/share/gnome-shell/extensions
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Icon Hider is a GNOME Shell extension for managing status area items";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ jonafato ];
|
2019-04-22 01:25:39 +01:00
|
|
|
platforms = gnome3.gnome-shell.meta.platforms;
|
2018-01-31 03:26:56 +00:00
|
|
|
homepage = https://github.com/ikalnytskyi/gnome-shell-extension-icon-hider;
|
2019-09-23 23:50:37 +01:00
|
|
|
broken = versionAtLeast gnome3.gnome-shell.version "3.32"; # Doesn't support 3.34
|
2018-01-31 03:26:56 +00:00
|
|
|
};
|
|
|
|
}
|