Merge pull request #21597 from volth/xfce4-windowck-plugin-0.4.4

xfce4-windowck-plugin: init at 0.4.4
This commit is contained in:
Daiderd Jordan 2017-01-04 00:27:22 +01:00 committed by GitHub
commit d8fcf3c1cf
2 changed files with 31 additions and 0 deletions

View File

@ -95,6 +95,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { };
xfce4_weather_plugin = callPackage ./panel-plugins/xfce4-weather-plugin.nix { };
xfce4_whiskermenu_plugin = callPackage ./panel-plugins/xfce4-whiskermenu-plugin.nix { };
xfce4_windowck_plugin = callPackage ./panel-plugins/xfce4-windowck-plugin.nix { };
xfce4_pulseaudio_plugin = callPackage ./panel-plugins/xfce4-pulseaudio-plugin.nix { };
}; # xfce_self

View File

@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub, pkgconfig, intltool, python3, imagemagick, libwnck, gtk2
, exo, libxfce4ui, libxfce4util, xfce4panel, xfconf, xfce4_dev_tools }:
stdenv.mkDerivation rec {
p_name = "xfce4-windowck-plugin";
version = "0.4.4";
src = fetchFromGitHub {
owner = "cedl38";
repo = "xfce4-windowck-plugin";
rev = "v${version}";
sha256 = "0c6a1ibh39dpq9x0dha5lsg0vzmgaf051fgwz0nlky0s94nwzvgv";
};
name = "${p_name}-${version}";
buildInputs = [ pkgconfig intltool python3 imagemagick libwnck gtk2
exo libxfce4ui libxfce4util xfce4panel xfconf xfce4_dev_tools ];
preConfigure = "./autogen.sh";
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
description = "Set of two plugins which allows you to put the maximized window title and windows buttons on the panel";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = [ maintainers.volth ];
};
}