fira: Fix permissions of installed files

No need for the executable permissions on fonts.

(cherry picked from commit af0a2a03a0)
This commit is contained in:
Damien Cassou
2023-05-23 15:22:53 +02:00
committed by github-actions[bot]
parent 78334a1869
commit 5f224f1ecc

View File

@@ -14,8 +14,7 @@ stdenvNoCC.mkDerivation rec {
installPhase = ''
runHook preInstall
mkdir -p $out/share/fonts/opentype
cp otf/*.otf $out/share/fonts/opentype
install --mode=-x -Dt $out/share/fonts/opentype otf/*.otf
runHook postInstall
'';