cm-unicode: fix install phase

With "InstallPhase" capitalized it is not actually run.

"cm" should be a literal, not a variable.
This commit is contained in:
Stefan Frijters
2026-03-05 10:41:34 +01:00
parent 2eeebaaf57
commit 63f7cee6fa
+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
'';