2011-08-23 00:51:23 +02:00
|
|
|
|
{ callPackage, pkgs }:
|
|
|
|
|
|
|
|
|
|
rec {
|
2012-03-14 22:57:32 +01:00
|
|
|
|
inherit (pkgs) gtk glib;
|
2011-08-23 00:51:23 +02:00
|
|
|
|
|
2011-09-05 22:36:37 +02:00
|
|
|
|
#### SUPPORT
|
|
|
|
|
|
2012-01-17 18:43:48 +01:00
|
|
|
|
# The useful bits from ‘gnome-disk-utility’.
|
2011-09-06 03:00:23 +02:00
|
|
|
|
libgdu = callPackage ./support/libgdu.nix { };
|
2011-09-05 22:36:37 +02:00
|
|
|
|
|
|
|
|
|
# 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 { };
|
|
|
|
|
|
|
|
|
|
|
2011-08-23 00:51:23 +02:00
|
|
|
|
#### 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 { };
|
|
|
|
|
|
2011-09-05 22:36:37 +02:00
|
|
|
|
thunar_volman = callPackage ./core/thunar-volman.nix { };
|
|
|
|
|
|
2011-08-23 00:51:23 +02:00
|
|
|
|
gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix { };
|
|
|
|
|
|
2012-01-17 19:08:09 +01:00
|
|
|
|
xfce4_appfinder = callPackage ./core/xfce4-appfinder.nix { };
|
|
|
|
|
|
2011-08-23 00:51:23 +02:00
|
|
|
|
|
|
|
|
|
#### APPLICATIONS
|
|
|
|
|
|
|
|
|
|
terminal = callPackage ./applications/terminal.nix {
|
|
|
|
|
inherit (pkgs.gnome) vte;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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 { };
|
|
|
|
|
|
2011-09-05 22:36:37 +02:00
|
|
|
|
|
2011-08-23 00:51:23 +02:00
|
|
|
|
#### ART
|
|
|
|
|
|
|
|
|
|
xfce4icontheme = callPackage ./art/xfce4-icon-theme.nix { };
|
2012-10-05 18:52:58 +02:00
|
|
|
|
xfce4themes = callPackage ./art/xfce4-themes.nix {};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### PANEL PLUGINS
|
|
|
|
|
|
|
|
|
|
xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix {};
|
|
|
|
|
xfce4_cpufreq_plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix {};
|
2011-08-23 00:51:23 +02:00
|
|
|
|
|
|
|
|
|
}
|