nixpkgs-immich/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin/default.nix
2024-09-17 10:23:40 -06:00

49 lines
791 B
Nix

{ mkXfceDerivation
, lib
, cmake
, accountsservice
, exo
, garcon
, gettext
, glib
, gtk-layer-shell
, gtk3
, libxfce4ui
, libxfce4util
, xfce4-panel
, xfconf
}:
mkXfceDerivation {
category = "panel-plugins";
pname = "xfce4-whiskermenu-plugin";
version = "2.8.3";
rev-prefix = "v";
odd-unstable = false;
sha256 = "sha256-xRLvjRu/I+wsTWXUhrJUcrQz+JkZCYqoJSqYAYOztgg=";
nativeBuildInputs = [
cmake
];
buildInputs = [
accountsservice
exo
garcon
gettext
glib
gtk-layer-shell
gtk3
libxfce4ui
libxfce4util
xfce4-panel
xfconf
];
meta = with lib; {
description = "Alternate application launcher for Xfce";
mainProgram = "xfce4-popup-whiskermenu";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
}