gnome3.gnome-themes-extra: add missing parent icon themes

This commit is contained in:
José Romildo Malaquias 2020-04-17 20:50:39 -03:00
parent 50c048f937
commit 580b886a06

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, intltool, gtk3, gnome3, librsvg, pkgconfig, pango, atk, gtk2
, gdk-pixbuf }:
, gdk-pixbuf, hicolor-icon-theme }:
let
pname = "gnome-themes-extra";
@ -19,9 +19,12 @@ in stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ gtk3 librsvg pango atk gtk2 gdk-pixbuf gnome3.adwaita-icon-theme ];
buildInputs = [ gtk3 librsvg pango atk gtk2 gdk-pixbuf ];
propagatedBuildInputs = [ gnome3.adwaita-icon-theme hicolor-icon-theme ];
postFixup = ''
dontDropIconThemeCache = true;
postInstall = ''
gtk-update-icon-cache "$out"/share/icons/HighContrast
'';