nixpkgs/pkgs/desktops/xfce/core/xfdesktop/default.nix
worldofpeace ac70cd728c xfce4-14: move to xfce and have only one version of xfce
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.
2019-11-19 18:47:02 -05:00

26 lines
454 B
Nix

{ mkXfceDerivation, exo, gtk3, libxfce4ui, libxfce4util, libwnck3, xfconf, libnotify, garcon, thunar }:
mkXfceDerivation {
category = "xfce";
pname = "xfdesktop";
version = "4.14.1";
sha256 = "006w4xwmpwp34q2qkkixr3xz0vb0kny79pw64yj4304wsb5jr14g";
buildInputs = [
exo
gtk3
libxfce4ui
libxfce4util
libwnck3
xfconf
libnotify
garcon
thunar
];
meta = {
description = "Xfce's desktop manager";
};
}