Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 34 lines 810 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 glib, 6 gettext, 7}: 8 9stdenv.mkDerivation rec { 10 pname = "gnome-shell-extension-topicons-plus"; 11 version = "27"; 12 13 src = fetchFromGitHub { 14 owner = "phocean"; 15 repo = "TopIcons-plus"; 16 rev = version; 17 sha256 = "1p3jlvs4zgnrvy8am7myivv4rnnshjp49kg87rd22qqyvcz51ykr"; 18 }; 19 20 buildInputs = [ glib ]; 21 22 nativeBuildInputs = [ gettext ]; 23 24 makeFlags = [ "INSTALL_PATH=$(out)/share/gnome-shell/extensions" ]; 25 26 passthru.extensionUuid = "TopIcons@phocean.net"; 27 28 meta = with lib; { 29 description = "Brings all icons back to the top panel, so that it's easier to keep track of apps running in the backround"; 30 license = licenses.gpl2Only; 31 maintainers = with maintainers; [ eperuffo ]; 32 homepage = "https://github.com/phocean/TopIcons-plus"; 33 }; 34}