summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core/xfdesktop/default.nix
blob: 75e9fc8cb653a34551de9fb1e732a4b9ca07e6b9 (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, libwnck3, xfconf, libnotify, garcon, thunar }:

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

  sha256 = "04fhm1pf9290sy3ymrmnfnm2x6fq5ldzvj5bjd9kz6zkx0nsq1za";

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

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