28 lines
827 B
Nix
28 lines
827 B
Nix
{ mkXfceDerivation, gettext, gtk3, glib, cmake, exo, garcon, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "panel-plugins";
|
|
pname = "xfce4-whiskermenu-plugin";
|
|
version = "2.5.3";
|
|
rev-prefix = "v";
|
|
odd-unstable = false;
|
|
sha256 = "sha256-Hw4vdFChKOqllsxMS2Bi7UL48a3Z6oB8oCPKWwa8bJY=";
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ gettext exo garcon gtk3 glib libxfce4ui libxfce4util xfce4-panel xfconf ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace panel-plugin/xfce4-popup-whiskermenu.in \
|
|
--replace gettext ${gettext}/bin/gettext
|
|
'';
|
|
|
|
postInstall = ''
|
|
substituteInPlace $out/bin/xfce4-popup-whiskermenu \
|
|
--replace $out/bin/xfce4-panel ${xfce4-panel.out}/bin/xfce4-panel
|
|
'';
|
|
|
|
meta = {
|
|
description = "Alternate application launcher for Xfce";
|
|
};
|
|
}
|