nixos/home/hyprland/pkgs/delta-icon-theme/default.nix

30 lines
639 B
Nix
Raw Normal View History

{ stdenvNoCC, fetchFromGitHub, gtk3, }:
stdenvNoCC.mkDerivation rec {
pname = "delta-icon-theme";
version = "7b5bc269516845518da5095ed8b8cbbc34d68edb";
dontBuild = true;
2023-05-18 11:50:27 +01:00
src = fetchFromGitHub {
owner = "Delta-Icons";
repo = "linux";
rev = version;
sha256 = "sha256-/QraIVlgCT4AH+LU5gMtBmIZo3TBdwyeXRyBUxP8KJA=";
};
2023-05-18 11:50:27 +01:00
nativeBuildInputs = [ gtk3 ];
2023-05-18 11:50:27 +01:00
dontDropIconThemeCache = true;
2023-05-18 11:50:27 +01:00
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons
mv Delta $out/share/icons
2023-05-18 11:50:27 +01:00
for theme in $out/share/icons/*; do
gtk-update-icon-cache --force $theme
done
2023-05-18 11:50:27 +01:00
runHook postInstall
'';
2023-05-18 11:50:27 +01:00
}