nixpkgs/pkgs/desktops/xfce/core/xfwm4/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

31 lines
582 B
Nix

{ mkXfceDerivation, exo, librsvg, dbus-glib, epoxy, gtk3, libXdamage
, libstartup_notification, libxfce4ui, libxfce4util, libwnck3
, libXpresent, xfconf }:
mkXfceDerivation {
category = "xfce";
pname = "xfwm4";
version = "4.14.0";
sha256 = "1z5aqij2d8n9wnha88b0qzkvss54jvqs8w1w5m3mzjl4c9mn9n8m";
nativeBuildInputs = [ exo librsvg ];
buildInputs = [
dbus-glib
epoxy
gtk3
libXdamage
libstartup_notification
libxfce4ui
libxfce4util
libwnck3
libXpresent
xfconf
];
meta = {
description = "Window manager for Xfce";
};
}