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:39:04 +01:00
parent 2eeebaaf57
commit 63f7cee6fa
No known key found for this signature in database
GPG key ID: 7619A6BC6E7DFA6F

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
'';