Merge pull request #59995 from jonafato/gnomeExtensions.icon-hider-v23

gnomeExtensions.icon-hider: 21 -> 23
This commit is contained in:
worldofpeace 2019-04-21 21:47:11 -04:00 committed by GitHub
commit ae294ea97a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub }: { stdenv, fetchFromGitHub, gnome3 }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "gnome-shell-extension-icon-hider-${version}"; name = "gnome-shell-extension-icon-hider-${version}";
version = "21"; version = "23";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ikalnytskyi"; owner = "ikalnytskyi";
repo = "gnome-shell-extension-icon-hider"; repo = "gnome-shell-extension-icon-hider";
rev = "v${version}"; rev = "v${version}";
sha256 = "0l0jb0ishaq00d4kdfvv5p7pj7b45dz57y3j2ihqr695bzb6b9hr"; sha256 = "18c8zkdrmdbghqqz7b450vhgpykgz25mgigwn2nggcb2lxmvm9ks";
}; };
uuid = "icon-hider@kalnitsky.org"; uuid = "icon-hider@kalnitsky.org";
@ -21,9 +21,8 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Icon Hider is a GNOME Shell extension for managing status area items"; description = "Icon Hider is a GNOME Shell extension for managing status area items";
license = licenses.bsd3; license = licenses.bsd3;
broken = true; # not compatable with latest GNOME
maintainers = with maintainers; [ jonafato ]; maintainers = with maintainers; [ jonafato ];
platforms = platforms.linux; platforms = gnome3.gnome-shell.meta.platforms;
homepage = https://github.com/ikalnytskyi/gnome-shell-extension-icon-hider; homepage = https://github.com/ikalnytskyi/gnome-shell-extension-icon-hider;
}; };
} }