fira: Fix permissions of installed files

No need for the executable permissions on fonts.
This commit is contained in:
Damien Cassou
2023-05-23 21:18:55 +02:00
committed by Robert Helgesson
parent 5bd109883c
commit 5bb66abf2b
+1 -2
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
'';