forked from mirrors/nixpkgs
gnomeExtensions.topicons-plus: init at v20 (#27116)
TopIcons extension for Gnome 3
This commit is contained in:
parent
756dce19a1
commit
240b632026
26
pkgs/desktops/gnome-3/extensions/topicons-plus/default.nix
Normal file
26
pkgs/desktops/gnome-3/extensions/topicons-plus/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchFromGitHub, glib, gettext, bash }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnome-shell-extension-topicons-plus-${version}";
|
||||
version = "v20";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "phocean";
|
||||
repo = "TopIcons-plus";
|
||||
rev = "01535328bd43ecb3f2c71376de6fc8d1d8a88577";
|
||||
sha256 = "0pwpg72ihgj2jl9pg63y0hibdsl27srr3mab881w0gh17vwyixzi";
|
||||
};
|
||||
|
||||
buildInputs = [ glib ];
|
||||
|
||||
nativeBuildInputs = [ gettext ];
|
||||
|
||||
makeFlags = [ "INSTALL_PATH=$(out)/share/gnome-shell/extensions" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Brings all icons back to the top panel, so that it's easier to keep track of apps running in the backround";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ eperuffo ];
|
||||
homepage = https://github.com/phocean/TopIcons-plus;
|
||||
};
|
||||
}
|
|
@ -17599,6 +17599,7 @@ with pkgs;
|
|||
gnomeExtensions = {
|
||||
caffeine = callPackage ../desktops/gnome-3/extensions/caffeine { };
|
||||
dash-to-dock = callPackage ../desktops/gnome-3/extensions/dash-to-dock { };
|
||||
topicons-plus = callPackage ../desktops/gnome-3/extensions/topicons-plus { };
|
||||
};
|
||||
|
||||
hsetroot = callPackage ../tools/X11/hsetroot { };
|
||||
|
|
Loading…
Reference in a new issue