Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
1.0 KiB
Nix
40 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
gnome-shell,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-extension-icon-hider";
|
|
version = "23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ikalnytskyi";
|
|
repo = "gnome-shell-extension-icon-hider";
|
|
rev = "v${version}";
|
|
sha256 = "18c8zkdrmdbghqqz7b450vhgpykgz25mgigwn2nggcb2lxmvm9ks";
|
|
};
|
|
|
|
passthru = {
|
|
extensionUuid = "icon-hider@kalnitsky.org";
|
|
extensionPortalSlug = "icon-hider";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/share/gnome-shell/extensions
|
|
cp -r "icon-hider@kalnitsky.org" $out/share/gnome-shell/extensions
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Icon Hider is a GNOME Shell extension for managing status area items";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
platforms = gnome-shell.meta.platforms;
|
|
homepage = "https://github.com/ikalnytskyi/gnome-shell-extension-icon-hider";
|
|
broken = versionAtLeast gnome-shell.version "3.32"; # Doesn't support 3.34
|
|
};
|
|
}
|