Skip to content

Commit 240b632

Browse files
emanueleperuffoMic92
authored andcommittedJul 4, 2017
gnomeExtensions.topicons-plus: init at v20 (#27116)
TopIcons extension for Gnome 3
1 parent 756dce1 commit 240b632

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{ stdenv, fetchFromGitHub, glib, gettext, bash }:
2+
3+
stdenv.mkDerivation rec {
4+
name = "gnome-shell-extension-topicons-plus-${version}";
5+
version = "v20";
6+
7+
src = fetchFromGitHub {
8+
owner = "phocean";
9+
repo = "TopIcons-plus";
10+
rev = "01535328bd43ecb3f2c71376de6fc8d1d8a88577";
11+
sha256 = "0pwpg72ihgj2jl9pg63y0hibdsl27srr3mab881w0gh17vwyixzi";
12+
};
13+
14+
buildInputs = [ glib ];
15+
16+
nativeBuildInputs = [ gettext ];
17+
18+
makeFlags = [ "INSTALL_PATH=$(out)/share/gnome-shell/extensions" ];
19+
20+
meta = with stdenv.lib; {
21+
description = "Brings all icons back to the top panel, so that it's easier to keep track of apps running in the backround";
22+
license = licenses.gpl2;
23+
maintainers = with maintainers; [ eperuffo ];
24+
homepage = https://github.com/phocean/TopIcons-plus;
25+
};
26+
}

‎pkgs/top-level/all-packages.nix

+1
Original file line numberDiff line numberDiff line change
@@ -17599,6 +17599,7 @@ with pkgs;
1759917599
gnomeExtensions = {
1760017600
caffeine = callPackage ../desktops/gnome-3/extensions/caffeine { };
1760117601
dash-to-dock = callPackage ../desktops/gnome-3/extensions/dash-to-dock { };
17602+
topicons-plus = callPackage ../desktops/gnome-3/extensions/topicons-plus { };
1760217603
};
1760317604

1760417605
hsetroot = callPackage ../tools/X11/hsetroot { };

2 commit comments

Comments
 (2)

bjornfor commented on Jul 9, 2017

@bjornfor
Contributor

version must start with a digit, or else Nix doesn't parse/sort it correctly:

nix-repl> builtins.parseDrvName gnomeExtensions.topicons-plus.name
{ name = "gnome-shell-extension-topicons-plus-v20"; version = ""; }

globin commented on Jul 18, 2017

@globin
Member

Fixed in adb178c

Please sign in to comment.