summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core/xfdesktop/default.nix
blob: bc6a19346eceb1a350c282859488399cf5fbd3f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ mkXfceDerivation, exo, gtk3, libxfce4ui, libxfce4util, libwnck, xfconf, libnotify, garcon, thunar }:

mkXfceDerivation {
  category = "xfce";
  pname = "xfdesktop";
  version = "4.16.0";

  sha256 = "sha256-w/JNjyAlxZqfVpm8EBt+ieHhUziOtfd//XHzIjJjy/4=";

  buildInputs = [
    exo
    gtk3
    libxfce4ui
    libxfce4util
    libwnck
    xfconf
    libnotify
    garcon
    thunar
  ];

  meta = {
    description = "Xfce's desktop manager";
  };
}