nixpkgs/pkgs/desktops/gnome-3/extensions/icon-hider/default.nix
Jon Banafato d2e518c4c5
gnomeExtensions.icon-hider: init at 19
Add the Icon Hider GNOME Shell extension.
2018-02-02 00:16:11 +01:00

28 lines
812 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "gnome-shell-extension-icon-hider-${version}";
version = "19";
src = fetchFromGitHub {
owner = "ikalnytskyi";
repo = "gnome-shell-extension-icon-hider";
rev = "v${version}";
sha256 = "0cifm6cmxwxrrrva41wvjvrzsdqaczfbillf2vv3wsb60dqr6h39";
};
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 ];
platforms = platforms.linux;
homepage = https://github.com/ikalnytskyi/gnome-shell-extension-icon-hider;
};
}