warp-terminal: Link missing libfontconfig to fix font discovery

authored by Kamil Monicz and committed by Masum Reza e6994e19 77909320

+8
+8
pkgs/by-name/wa/warp-terminal/package.nix
··· 82 + '' 83 runHook postInstall 84 ''; 85 }); 86 87 darwin = stdenvNoCC.mkDerivation (finalAttrs: {
··· 82 + '' 83 runHook postInstall 84 ''; 85 + 86 + postFixup = '' 87 + # Link missing libfontconfig to fix font discovery 88 + # https://github.com/warpdotdev/Warp/issues/5793 89 + patchelf \ 90 + --add-needed libfontconfig.so.1 \ 91 + $out/opt/warpdotdev/warp-terminal/warp 92 + ''; 93 }); 94 95 darwin = stdenvNoCC.mkDerivation (finalAttrs: {