liberation_ttf_v1: fix build after #248865

This commit is contained in:
K900 2023-08-14 10:33:59 +03:00
parent 3b7deba8c8
commit 8132659329

View File

@ -20,7 +20,10 @@ let
installPhase = ''
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/truetype {} \;
install -m444 -Dt $out/share/doc/${pname}-${version} ${lib.concatStringsSep " " docsToInstall}
for i in ${toString docsToInstall}; do
# not all docs exist in all versions
install -m444 -Dt $out/share/doc/${pname}-${version} $i || true
done
'';
meta = with lib; {