summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.8/default.nix
blob: c20e42d20196eaff9afdef5299d525b7e3ae241d (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{ callPackage, pkgs }:

rec {
  inherit (pkgs) gtk glib;

  #### SUPPORT

  # The useful bits from ‘gnome-disk-utility’.
  libgdu = callPackage ./support/libgdu.nix { };  

  # Gvfs is required by Thunar for the trash feature and for volume
  # mounting.  Should use the one from Gnome, but I don't want to mess
  # with the Gnome packages (or pull in a zillion Gnome dependencies).
  gvfs = callPackage ./support/gvfs.nix { };

  
  #### CORE

  libxfce4util = callPackage ./core/libxfce4util.nix { };

  exo = callPackage ./core/exo.nix {
    inherit (pkgs.perlPackages) URI;
  };

  xfconf = callPackage ./core/xfconf.nix { };
  
  libxfcegui4 = callPackage ./core/libxfcegui4.nix {
    inherit (pkgs.gnome) libglade;
  };

  libxfce4ui = callPackage ./core/libxfce4ui.nix { };

  xfwm4 = callPackage ./core/xfwm4.nix {
    inherit (pkgs.gnome) libwnck;
  };

  xfceutils = callPackage ./core/xfce-utils.nix { };

  garcon = callPackage ./core/garcon.nix { };

  xfce4panel = callPackage ./core/xfce4-panel.nix {
    inherit (pkgs.gnome) libwnck;
  };

  xfce4session = callPackage ./core/xfce4-session.nix {
    inherit (pkgs.gnome) libwnck;
  };

  xfce4settings = callPackage ./core/xfce4-settings.nix { };

  xfdesktop = callPackage ./core/xfdesktop.nix {
    inherit (pkgs.gnome) libwnck;
  };

  thunar = callPackage ./core/thunar.nix { };

  thunar_volman = callPackage ./core/thunar-volman.nix { };

  gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix { };

  xfce4_appfinder = callPackage ./core/xfce4-appfinder.nix { };


  #### APPLICATIONS
  
  terminal = callPackage ./applications/terminal.nix {
    inherit (pkgs.gnome) vte;
  };

  gigolo = callPackage ./applications/gigolo.nix { };

  mousepad = callPackage ./applications/mousepad.nix { };

  ristretto = callPackage ./applications/ristretto.nix { };

  xfce4_power_manager = callPackage ./applications/xfce4-power-manager.nix { };

  xfce4mixer = callPackage ./applications/xfce4-mixer.nix { };

  xfce4_taskmanager = callPackage ./applications/xfce4-taskmanager.nix { };

  
  #### ART

  xfce4icontheme = callPackage ./art/xfce4-icon-theme.nix { };

  #### PANEL PLUGINS
  
  xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix {};
  xfce4_cpufreq_plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix {};
  
}