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.
17 lines
415 B
Nix
17 lines
415 B
Nix
{ mkXfceDerivation, exo, garcon, gtk3, libxfce4util, libxfce4ui, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "xfce";
|
|
pname = "xfce4-appfinder";
|
|
version = "4.14.0";
|
|
|
|
sha256 = "04h7jxfm3wkxnxfy8149dckay7i160vvk4p9lnq6xny22r4x20h8";
|
|
|
|
nativeBuildInputs = [ exo ];
|
|
buildInputs = [ garcon gtk3 libxfce4ui libxfce4util xfconf ];
|
|
|
|
meta = {
|
|
description = "Appfinder for the Xfce4 Desktop Environment";
|
|
};
|
|
}
|