cm-unicode: fix install phase (#496829)

This commit is contained in:
Yohann Boniface
2026-03-05 11:28:48 +00:00
committed by GitHub
+2 -2
View File
@@ -16,10 +16,10 @@ stdenvNoCC.mkDerivation (finalAttrs: {
nativeBuildInputs = [ installFonts ];
InstallPhase = ''
installPhase = ''
runHook preInstall
install -m444 -Dt $out/share/doc/$cm-unicode-${finalAttrs.version} README FontLog.txt
install -m444 -Dt $out/share/doc/cm-unicode-${finalAttrs.version} README FontLog.txt
runHook postInstall
'';