nixpkgs/pkgs/desktops/xfce/core/xfwm4/default.nix

31 lines
634 B
Nix
Raw Normal View History

2019-05-20 23:53:29 +00:00
{ mkXfceDerivation, exo, librsvg, dbus-glib, epoxy, gtk3, libXdamage
, libstartup_notification, libxfce4ui, libxfce4util, libwnck3
, libXpresent, xfconf }:
2017-12-17 15:02:52 +00:00
2019-08-13 21:52:01 +00:00
mkXfceDerivation {
2017-12-17 15:02:52 +00:00
category = "xfce";
pname = "xfwm4";
2020-03-14 21:04:38 +00:00
version = "4.14.0"; # TODO: remove xfce4-14 alias when this gets bumped
2017-12-17 15:02:52 +00:00
2019-08-12 10:38:41 +00:00
sha256 = "1z5aqij2d8n9wnha88b0qzkvss54jvqs8w1w5m3mzjl4c9mn9n8m";
2017-12-17 15:02:52 +00:00
2019-05-20 23:53:29 +00:00
nativeBuildInputs = [ exo librsvg ];
2017-12-17 15:02:52 +00:00
buildInputs = [
dbus-glib
2017-12-17 15:02:52 +00:00
epoxy
2019-05-20 23:53:29 +00:00
gtk3
libXdamage
2017-12-17 15:02:52 +00:00
libstartup_notification
libxfce4ui
libxfce4util
2019-05-20 23:53:29 +00:00
libwnck3
2017-12-17 15:02:52 +00:00
libXpresent
xfconf
];
meta = {
description = "Window manager for Xfce";
};
2017-12-17 15:02:52 +00:00
}