pcmanfm: add defaultIconTheme to fix missing icons

This commit is contained in:
Jörg Thalheim 2017-08-12 07:45:29 +01:00
parent 11861b7c97
commit 8cd83cde50

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, glib, intltool, libfm, libX11, pango, pkgconfig
, withGtk3 ? true, gtk2, gtk3 }:
, wrapGAppsHook, gnome3, withGtk3 ? true, gtk2, gtk3 }:
let
libfm' = libfm.override { inherit withGtk3; };
@ -13,7 +13,8 @@ stdenv.mkDerivation rec {
sha256 = "0rxdh0dfzc84l85c54blq42gczygq8adhr3l9hqzy1dp530cm1hc";
};
buildInputs = [ glib gtk intltool libfm' libX11 pango pkgconfig ];
buildInputs = [ glib gtk libfm' libX11 pango gnome3.defaultIconTheme ];
nativeBuildInputs = [ pkgconfig wrapGAppsHook intltool ];
configureFlags = optional withGtk3 "--with-gtk=3";