fira: Fix permissions of installed files

No need for the executable permissions on fonts.
This commit is contained in:
Damien Cassou 2023-05-23 15:22:53 +02:00 committed by Robert Helgesson
parent 5bd109883c
commit 5bb66abf2b

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