2020-04-23 19:34:41 +01:00
|
|
|
{ mkXfceDerivation, gettext, gtk3, glib, cmake, exo, garcon, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
|
2018-08-01 21:48:21 +01:00
|
|
|
|
2020-04-13 22:12:16 +01:00
|
|
|
mkXfceDerivation {
|
2018-08-01 21:48:21 +01:00
|
|
|
category = "panel-plugins";
|
|
|
|
pname = "xfce4-whiskermenu-plugin";
|
2021-10-10 21:42:36 +01:00
|
|
|
version = "2.6.0";
|
2020-04-13 22:12:16 +01:00
|
|
|
rev-prefix = "v";
|
2020-12-27 17:26:23 +00:00
|
|
|
odd-unstable = false;
|
2021-10-10 21:42:36 +01:00
|
|
|
sha256 = "sha256-VTv4nOL1ltHrewf3q4Uz4e2QjV+Jf7YZTNqILjuAEpM=";
|
2018-08-01 21:48:21 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2020-04-23 19:34:41 +01:00
|
|
|
buildInputs = [ gettext exo garcon gtk3 glib libxfce4ui libxfce4util xfce4-panel xfconf ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace panel-plugin/xfce4-popup-whiskermenu.in \
|
|
|
|
--replace gettext ${gettext}/bin/gettext
|
|
|
|
'';
|
2018-08-01 21:48:21 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
substituteInPlace $out/bin/xfce4-popup-whiskermenu \
|
|
|
|
--replace $out/bin/xfce4-panel ${xfce4-panel.out}/bin/xfce4-panel
|
|
|
|
'';
|
2019-11-04 21:27:22 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Alternate application launcher for Xfce";
|
|
|
|
};
|
2018-08-01 21:48:21 +01:00
|
|
|
}
|