nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 47 lines 665 B view raw
1{ 2 lib, 3 mkXfceDerivation, 4 exo, 5 librsvg, 6 dbus-glib, 7 libepoxy, 8 gtk3, 9 libXdamage, 10 libstartup_notification, 11 libxfce4ui, 12 libxfce4util, 13 libwnck, 14 libXpresent, 15 xfconf, 16}: 17 18mkXfceDerivation { 19 category = "xfce"; 20 pname = "xfwm4"; 21 version = "4.20.0"; 22 23 sha256 = "sha256-5UZQrAH0oz+G+7cvXCLDJ4GSXNJcyl4Ap9umb7h0f5Q="; 24 25 nativeBuildInputs = [ 26 exo 27 librsvg 28 ]; 29 30 buildInputs = [ 31 dbus-glib 32 libepoxy 33 gtk3 34 libXdamage 35 libstartup_notification 36 libxfce4ui 37 libxfce4util 38 libwnck 39 libXpresent 40 xfconf 41 ]; 42 43 meta = with lib; { 44 description = "Window manager for Xfce"; 45 teams = [ teams.xfce ]; 46 }; 47}