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.
16 lines
331 B
Nix
16 lines
331 B
Nix
{ mkXfceDerivation, libxfce4util }:
|
|
|
|
mkXfceDerivation {
|
|
category = "xfce";
|
|
pname = "xfconf";
|
|
version = "4.14.1";
|
|
|
|
sha256 = "1mbqc1463xgn7gafbh2fyshshdxin33iwk96y4nw2gl48nhx4sgs";
|
|
|
|
buildInputs = [ libxfce4util ];
|
|
|
|
meta = {
|
|
description = "Simple client-server configuration storage and query system for Xfce";
|
|
};
|
|
}
|