mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
ac70cd728c
All code that was at xfce4-14 has been moved to xfce/*. Old expressions that aren't rewritten might be abandoned or broken. Additonally I've ported the xfce4-14 thunar expression to support thunarPlugins. We can now support this interface in the Xfce module again, although I'm not sure if we have any plugins packaged that support latest thunar.
23 lines
659 B
Nix
23 lines
659 B
Nix
{ mkXfceDerivation, gtk3, glib, cmake, exo, garcon, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
|
|
|
|
mkXfceDerivation rec {
|
|
category = "panel-plugins";
|
|
pname = "xfce4-whiskermenu-plugin";
|
|
version = "2.3.3";
|
|
rev = "v${version}";
|
|
sha256 = "0agh0a5srsy6vi6r50ak9rb42r7vcnfv6nfvg4qbqi77yc44yqdb";
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ exo garcon gtk3 glib libxfce4ui libxfce4util xfce4-panel xfconf ];
|
|
|
|
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";
|
|
};
|
|
}
|