faba-mono-icons: add missing parent icon themes

gstqt5
José Romildo Malaquias 2020-04-17 20:56:56 -03:00
parent e96ef43248
commit 15a739dfa7
1 changed files with 9 additions and 3 deletions

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