3e7541c14f
GitOrigin-RevId: ff377a78794d412a35245e05428c8f95fef3951f
29 lines
905 B
Nix
29 lines
905 B
Nix
{ lib, mkXfceDerivation, gettext, gtk3, glib, cmake, exo, garcon, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "panel-plugins";
|
|
pname = "xfce4-whiskermenu-plugin";
|
|
version = "2.7.1";
|
|
rev-prefix = "v";
|
|
odd-unstable = false;
|
|
sha256 = "sha256-aN8PwH5YIbjiyS5tTcU2AU4LAYC2tBStDxhCXi/dvkQ=";
|
|
|
|
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 = with lib; {
|
|
description = "Alternate application launcher for Xfce";
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
|
};
|
|
}
|