summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core/xfce4-settings.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-08-15 16:10:34 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-08-15 16:15:11 +0200
commita218b2d3cb1ba9c450b2513cfe7e2f85998144b5 (patch)
treeccb99955ddfae2e65bb9a6c59ff2671bb7c645ea /pkgs/desktops/xfce/core/xfce4-settings.nix
parent47c9825c2dbfb21596d69088149d2bb9ccd0194e (diff)
downloadnixlib-a218b2d3cb1ba9c450b2513cfe7e2f85998144b5.tar
nixlib-a218b2d3cb1ba9c450b2513cfe7e2f85998144b5.tar.gz
nixlib-a218b2d3cb1ba9c450b2513cfe7e2f85998144b5.tar.bz2
nixlib-a218b2d3cb1ba9c450b2513cfe7e2f85998144b5.tar.lz
nixlib-a218b2d3cb1ba9c450b2513cfe7e2f85998144b5.tar.xz
nixlib-a218b2d3cb1ba9c450b2513cfe7e2f85998144b5.tar.zst
nixlib-a218b2d3cb1ba9c450b2513cfe7e2f85998144b5.zip
xfce: Fix missing icons
Xfce didn't have a default value for its icon theme, so most icons
were missing until the user explicitly selected an icon theme in the
appearance settings.  Example:

  http://hydra.nixos.org/build/5717570/download/1/screen.png

This patch sets the Rodent theme as the default (which used to be the
case on NixOS).

http://lists.freebsd.org/pipermail/freebsd-ports/2012-June/076349.html
http://www.freebsd.org/cgi/query-pr.cgi?pr=168688
Diffstat (limited to 'pkgs/desktops/xfce/core/xfce4-settings.nix')
-rw-r--r--pkgs/desktops/xfce/core/xfce4-settings.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/desktops/xfce/core/xfce4-settings.nix b/pkgs/desktops/xfce/core/xfce4-settings.nix
index d597237e32b2..2e76b22510f9 100644
--- a/pkgs/desktops/xfce/core/xfce4-settings.nix
+++ b/pkgs/desktops/xfce/core/xfce4-settings.nix
@@ -11,14 +11,18 @@ stdenv.mkDerivation rec {
     url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
     sha256 = "1m8k9s7qihwkkbjrrkmk103a6iwahxdfq65aswrsbqshx9cnk2hi";
   };
+
   name = "${p_name}-${ver_maj}.${ver_min}";
 
+  patches = [ ./xfce4-settings-default-icon-theme.patch ];
+
   buildInputs =
     [ pkgconfig intltool exo gtk libxfce4util libxfce4ui libglade
       xfconf xorg.libXi xorg.libXcursor libwnck libnotify libxklavier garcon
-    #gtk libxfce4util libxfcegui4 libwnck dbus_glib
+      #gtk libxfce4util libxfcegui4 libwnck dbus_glib
       #xfconf libglade xorg.iceauth
     ];
+
   configureFlags = "--enable-pluggable-dialogs --enable-sound-settings";
 
   meta = {