xfce4-13.xfce4-whiskermenu-plugin: init at 2.2.0 (#44317)

This commit is contained in:
volth 2018-08-01 20:48:21 +00:00 committed by xeji
parent b129cd165a
commit ee23bd7046
2 changed files with 20 additions and 0 deletions

View File

@ -82,5 +82,7 @@ makeScope newScope (self: with self; {
xfce4-volumed-pulse = callPackage ./xfce4-volumed-pulse { };
xfce4-whiskermenu-plugin = callPackage ./xfce4-whiskermenu-plugin { };
xfwm4 = callPackage ./xfwm4 { };
})

View File

@ -0,0 +1,18 @@
{ mkXfceDerivation, dbus-glib, gtk3, cmake, exo, garcon, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
mkXfceDerivation rec {
category = "panel-plugins";
pname = "xfce4-whiskermenu-plugin";
version = "2.2.0";
rev = "v${version}";
sha256 = "1d35xxkdzw8pl3d5ps226mmrrjk0hqczsbvl5smh7l7jbwfambjm";
nativeBuildInputs = [ cmake ];
buildInputs = [ dbus-glib exo garcon gtk3 libxfce4ui libxfce4util xfce4-panel xfconf ];
postInstall = ''
substituteInPlace $out/bin/xfce4-popup-whiskermenu \
--replace $out/bin/xfce4-panel ${xfce4-panel.out}/bin/xfce4-panel
'';
}