{ lib, stdenvNoCC, findutils, }: stdenvNoCC.mkDerivation { pname = "apple-fonts"; version = "2024-09-08"; src = ./Fonts; nativeBuildInputs = [ findutils ]; installPhase = '' runHook preInstall mkdir -p $out/share/fonts/truetype mkdir -p $out/share/fonts/opentype find Fonts/*/Fonts/ -name '*.ttf' -exec cp {} "$out/share/fonts/truetype/" \; find Fonts/*/Fonts/ -name '*.otf' -exec cp {} "$out/share/fonts/opentype/" \; runHook postInstall ''; meta = with lib; { homepage = "https://developer.apple.com/fonts/"; license = licenses.unfree; platforms = platforms.all; }; }