2022-09-22 12:36:57 +00:00
|
|
|
{ lib
|
|
|
|
, mkXfceDerivation
|
|
|
|
, imagemagick
|
|
|
|
, libwnck
|
|
|
|
, libxfce4ui
|
|
|
|
, python3
|
|
|
|
, xfce4-panel
|
|
|
|
, xfconf
|
|
|
|
}:
|
|
|
|
|
|
|
|
mkXfceDerivation {
|
|
|
|
category = "panel-plugins";
|
|
|
|
pname = "xfce4-windowck-plugin";
|
|
|
|
version = "0.5.0";
|
|
|
|
rev-prefix = "v";
|
|
|
|
odd-unstable = false;
|
|
|
|
sha256 = "sha256-MhNSgI74VLdoS5yL6nfRrVrPvv7+0P5meO4zQheYFzo=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
imagemagick
|
2021-06-28 23:13:55 +00:00
|
|
|
libwnck
|
2020-04-24 23:36:52 +00:00
|
|
|
libxfce4ui
|
2022-09-22 12:36:57 +00:00
|
|
|
python3
|
2020-04-24 23:36:52 +00:00
|
|
|
xfce4-panel
|
|
|
|
xfconf
|
|
|
|
];
|
|
|
|
|
2022-09-22 12:36:57 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs themes/windowck{,-dark}/{xfwm4,unity}/generator.py
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2022-09-22 12:36:57 +00:00
|
|
|
description = "Xfce panel plugin for displaying window title and buttons";
|
|
|
|
license = licenses.gpl3Plus;
|
2022-07-14 12:49:19 +00:00
|
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|