summary refs log tree commit diff
path: root/pkgs/desktops/xfce4-13/xfdesktop/default.nix
blob: 6b99b1b6a3505f482dd6887856bc49ed120caa39 (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, wrapGAppsHook, gtk3, libxfce4ui, libxfce4util, libwnck3, xfconf }:

mkXfceDerivation rec {
  category = "xfce";
  pname = "xfdesktop";
  version = "4.14pre2";
  rev = "xfce-4.14pre2";

  sha256 = "14sfcxbwxhhwn9nmiap46nz6idvw5hwr8wyjqrhq4h79x78g18k4";

  nativeBuildInputs = [ wrapGAppsHook ]; # fix "No GSettings schemas are installed on the system"

  buildInputs = [
    exo
    gtk3
    libxfce4ui
    libxfce4util
    libwnck3
    xfconf
  ];

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