Add dependencies for candy icons

This commit is contained in:
Evie Litherland-Smith 2023-11-12 08:53:19 +00:00
parent 6c52aa0afb
commit 4c66ef1ed6
2 changed files with 16 additions and 12 deletions

View file

@ -1,8 +1,4 @@
{
stdenvNoCC,
fetchFromGitHub,
gtk3,
}:
{ stdenvNoCC, fetchFromGitHub, gtk3, libsForQt5, gnome, hicolor-icon-theme }:
stdenvNoCC.mkDerivation rec {
pname = "candy-icon-theme";
version = "6a35be5cb133c6be8314807f55da3d795e24fb86";
@ -15,7 +11,10 @@ stdenvNoCC.mkDerivation rec {
sha256 = "sha256-M58ts/xyVf+ZDidd4MEp/LlU3vk2imEwOnb0/sVJUYo=";
};
nativeBuildInputs = [gtk3];
nativeBuildInputs = [ gtk3 ];
buildInputs =
[ libsForQt5.breeze-icons gnome.adwaita-icon-theme hicolor-icon-theme ];
dontDropIconThemeCache = true;

View file

@ -1,8 +1,5 @@
{
stdenvNoCC,
fetchFromGitHub,
gtk3,
}:
{ stdenvNoCC, fetchFromGitHub, gtk3, candy-icon-theme, gnome-icon-theme
, ubuntu-themes, cinnamon, elementary-xfce-icon-theme }:
stdenvNoCC.mkDerivation rec {
pname = "sweet-folder-theme";
version = "b2192ff1412472f036fdf9778c6b9dbcb6c044ec";
@ -15,7 +12,15 @@ stdenvNoCC.mkDerivation rec {
sha256 = "sha256-QexfqXH5a1IEhKBRjWSMdrEvThvLRzd4M32Xti1DCGE=";
};
nativeBuildInputs = [gtk3];
nativeBuildInputs = [ gtk3 ];
buildInputs = [
candy-icon-theme
gnome-icon-theme
ubuntu-themes
cinnamon.mint-x-icons
elementary-xfce-icon-theme
];
dontDropIconThemeCache = true;