3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/xfce/core/xfwm4/default.nix

32 lines
663 B
Nix
Raw Normal View History

2021-11-28 18:51:44 +00:00
{ lib, mkXfceDerivation, exo, librsvg, dbus-glib, libepoxy, gtk3, libXdamage
2021-06-23 19:22:04 +01:00
, libstartup_notification, libxfce4ui, libxfce4util, libwnck
, libXpresent, xfconf }:
2017-12-17 15:02:52 +00:00
2019-08-13 22:52:01 +01:00
mkXfceDerivation {
2017-12-17 15:02:52 +00:00
category = "xfce";
pname = "xfwm4";
2020-12-28 21:17:58 +00:00
version = "4.16.1";
2017-12-17 15:02:52 +00:00
sha256 = "sha256-CwRJk+fqu3iC4Vb6fKGOIZZk2hxTqYF3sNvm6WKqHdI=";
2017-12-17 15:02:52 +00:00
2019-05-21 00:53:29 +01:00
nativeBuildInputs = [ exo librsvg ];
2017-12-17 15:02:52 +00:00
buildInputs = [
dbus-glib
libepoxy
2019-05-21 00:53:29 +01:00
gtk3
libXdamage
2017-12-17 15:02:52 +00:00
libstartup_notification
libxfce4ui
libxfce4util
2021-06-23 19:22:04 +01:00
libwnck
2017-12-17 15:02:52 +00:00
libXpresent
xfconf
];
2021-11-28 18:51:44 +00:00
meta = with lib; {
description = "Window manager for Xfce";
2021-11-28 18:51:44 +00:00
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
2017-12-17 15:02:52 +00:00
}