zafiro-icons: add missing parent icon themes

This commit is contained in:
José Romildo Malaquias 2020-04-17 20:51:41 -03:00
parent b267955aa7
commit 4d92e1b32d

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, gtk3, hicolor-icon-theme }: { stdenv, fetchFromGitHub, gtk3, breeze-icons, gnome-icon-theme, numix-icon-theme, numix-icon-theme-circle, hicolor-icon-theme }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "zafiro-icons"; pname = "zafiro-icons";
@ -11,10 +11,17 @@ stdenv.mkDerivation rec {
sha256 = "05h8qm9izjbp8pnl9jpbw3y9sddhp0zmg94fm1k4d4hhdqnakqhv"; sha256 = "05h8qm9izjbp8pnl9jpbw3y9sddhp0zmg94fm1k4d4hhdqnakqhv";
}; };
nativeBuildInputs = [ gtk3 ]; nativeBuildInputs = [
gtk3
];
propagatedBuildInputs = [ propagatedBuildInputs = [
breeze-icons
gnome-icon-theme
numix-icon-theme
numix-icon-theme-circle
hicolor-icon-theme hicolor-icon-theme
# still missing parent icon themes: Surfn
]; ];
dontDropIconThemeCache = true; dontDropIconThemeCache = true;