mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 01:24:09 +01:00
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:
parent
2eeebaaf57
commit
63f7cee6fa
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
'';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue