summary refs log tree commit diff
path: root/pkgs/desktops/xfce
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2020-04-16 09:05:03 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2020-04-19 21:32:15 -0300
commit5dd4e8900d8e274d694fff6112477da12daac889 (patch)
tree094dd857fd5fe29fd3bf8eb265adf2758ec4b1ec /pkgs/desktops/xfce
parentcc4f55431dcfc3d013ea67293d42f024bfbdbc5d (diff)
downloadnixpkgs-5dd4e8900d8e274d694fff6112477da12daac889.tar
nixpkgs-5dd4e8900d8e274d694fff6112477da12daac889.tar.gz
nixpkgs-5dd4e8900d8e274d694fff6112477da12daac889.tar.bz2
nixpkgs-5dd4e8900d8e274d694fff6112477da12daac889.tar.lz
nixpkgs-5dd4e8900d8e274d694fff6112477da12daac889.tar.xz
nixpkgs-5dd4e8900d8e274d694fff6112477da12daac889.tar.zst
nixpkgs-5dd4e8900d8e274d694fff6112477da12daac889.zip
xfce.xfce4-icon-theme: add missing parent icon themes
Also:
- replace gtk2 by gtk3
- intltool and gtk are native build dependences
Diffstat (limited to 'pkgs/desktops/xfce')
-rw-r--r--pkgs/desktops/xfce/art/xfce4-icon-theme.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/pkgs/desktops/xfce/art/xfce4-icon-theme.nix b/pkgs/desktops/xfce/art/xfce4-icon-theme.nix
index e614bb1db92..526b7030591 100644
--- a/pkgs/desktops/xfce/art/xfce4-icon-theme.nix
+++ b/pkgs/desktops/xfce/art/xfce4-icon-theme.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, intltool, gtk3, xfce }:
+{ stdenv, fetchurl, pkgconfig, intltool, gtk3, gnome-icon-theme, tango-icon-theme, hicolor-icon-theme, xfce }:
 
 let
   category = "art";
@@ -19,6 +19,15 @@ stdenv.mkDerivation rec {
     gtk3
   ];
 
+  buildInputs = [
+    gnome-icon-theme
+    tango-icon-theme
+    hicolor-icon-theme
+    # missing parent icon theme Industrial
+  ];
+
+  dontDropIconThemeCache = true;
+
   passthru.updateScript = xfce.updateScript {
     inherit pname version;
     attrPath = "xfce.${pname}";