faba-mono-icons: add missing parent icon themes

This commit is contained in:
José Romildo Malaquias 2020-04-17 20:56:56 -03:00
parent e96ef43248
commit 15a739dfa7

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, autoreconfHook, gtk3, moka-icon-theme, hicolor-icon-theme }: { stdenv, fetchFromGitHub, autoreconfHook, gtk3, moka-icon-theme, faba-icon-theme, gnome-icon-theme, hicolor-icon-theme }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "faba-mono-icons"; pname = "faba-mono-icons";
@ -11,15 +11,21 @@ stdenv.mkDerivation rec {
sha256 = "0nisfl92y6hrbakp9qxi0ygayl6avkzrhwirg6854bwqjy2dvjv9"; sha256 = "0nisfl92y6hrbakp9qxi0ygayl6avkzrhwirg6854bwqjy2dvjv9";
}; };
nativeBuildInputs = [ autoreconfHook gtk3 moka-icon-theme ]; nativeBuildInputs = [
autoreconfHook
gtk3
];
propagatedBuildInputs = [ propagatedBuildInputs = [
moka-icon-theme
faba-icon-theme
gnome-icon-theme
hicolor-icon-theme hicolor-icon-theme
]; ];
dontDropIconThemeCache = true; dontDropIconThemeCache = true;
postFixup = '' postInstall = ''
for theme in $out/share/icons/*; do for theme in $out/share/icons/*; do
gtk-update-icon-cache $theme gtk-update-icon-cache $theme
done done