about summary refs log tree commit diff
path: root/pkgs/desktops/xfce/default.nix
diff options
context:
space:
mode:
authorDemin Dmitriy <demindf@gmail.com>2015-11-01 06:59:23 +0300
committerDemin Dmitriy <demindf@gmail.com>2015-11-01 08:12:59 +0300
commitb03023679923bfd452938d1249644cc1c328419c (patch)
tree6b6f226b6670a533df5e2a3b541387cf7b53dcff /pkgs/desktops/xfce/default.nix
parentd1b54348b6b548cc6908aa1195e71106d40999bd (diff)
downloadnixlib-b03023679923bfd452938d1249644cc1c328419c.tar
nixlib-b03023679923bfd452938d1249644cc1c328419c.tar.gz
nixlib-b03023679923bfd452938d1249644cc1c328419c.tar.bz2
nixlib-b03023679923bfd452938d1249644cc1c328419c.tar.lz
nixlib-b03023679923bfd452938d1249644cc1c328419c.tar.xz
nixlib-b03023679923bfd452938d1249644cc1c328419c.tar.zst
nixlib-b03023679923bfd452938d1249644cc1c328419c.zip
libxfce4ui xfce4panel: add gtk3 support
Diffstat (limited to 'pkgs/desktops/xfce/default.nix')
-rw-r--r--pkgs/desktops/xfce/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix
index 2f563dbbf5ca..1ff585843e5b 100644
--- a/pkgs/desktops/xfce/default.nix
+++ b/pkgs/desktops/xfce/default.nix
@@ -22,6 +22,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
   garcon          = callPackage ./core/garcon.nix { };
   gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix { }; # ToDo: when should be used?
   libxfce4ui      = callPackage ./core/libxfce4ui.nix { };
+  libxfce4ui_gtk3 = libxfce4ui.override { withGtk3 = true; };
   libxfce4util    = callPackage ./core/libxfce4util.nix { };
   libxfcegui4     = callPackage ./core/libxfcegui4.nix { };
   thunar          = callPackage ./core/thunar.nix { };
@@ -32,6 +33,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
                   = callPackage ./thunar-plugins/dropbox { };
   tumbler         = callPackage ./core/tumbler.nix { };
   xfce4panel      = callPackage ./core/xfce4-panel.nix { }; # ToDo: impure plugins from /run/current-system/sw/lib/xfce4
+  xfce4panel_gtk3 = xfce4panel.override { withGtk3 = true; };
   xfce4session    = callPackage ./core/xfce4-session.nix { };
   xfce4settings   = callPackage ./core/xfce4-settings.nix { };
   xfce4_power_manager = callPackage ./core/xfce4-power-manager.nix { };
@@ -67,7 +69,6 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
 
   #### PANEL PLUGINS        from "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.{bz2,gz}"
 
-
   xfce4_battery_plugin     = callPackage ./panel-plugins/xfce4-battery-plugin.nix     { };
   xfce4_clipman_plugin     = callPackage ./panel-plugins/xfce4-clipman-plugin.nix     { };
   xfce4_cpufreq_plugin     = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix     { };