Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.0 KiB
Nix
49 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
gtk3,
|
|
hicolor-icon-theme,
|
|
}:
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "kanagawa-icon-theme";
|
|
version = "0-unstable-2023-07-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Fausto-Korpsvart";
|
|
repo = "Kanagawa-GKT-Theme";
|
|
rev = "35936a1e3bbd329339991b29725fc1f67f192c1e";
|
|
hash = "sha256-BZRmjVas8q6zsYbXFk4bCk5Ec/3liy9PQ8fqFGHAXe0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gtk3
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
hicolor-icon-theme
|
|
];
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/icons
|
|
cp -a icons/* $out/share/icons
|
|
for theme in $out/share/icons/*; do
|
|
gtk-update-icon-cache -f $theme
|
|
done
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Icon theme for the Kanagawa colour palette";
|
|
homepage = "https://github.com/Fausto-Korpsvart/Kanagawa-GKT-Theme";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ iynaix ];
|
|
platforms = gtk3.meta.platforms;
|
|
};
|
|
}
|