bffbf4617a
Their keys are now not used directly. Instead, we go the standard route of mapping to the UUID in order to apply the rename procedure. This makes sure the manual override always does the correct thing, and also gives us more consistency overall.
35 lines
1.0 KiB
Nix
35 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, gnome }:
|
|
|
|
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 = with maintainers; [ jonafato ];
|
|
platforms = gnome.gnome-shell.meta.platforms;
|
|
homepage = "https://github.com/ikalnytskyi/gnome-shell-extension-icon-hider";
|
|
broken = versionAtLeast gnome.gnome-shell.version "3.32"; # Doesn't support 3.34
|
|
};
|
|
}
|