liberation_ttf_v1: fix build after #248865
This commit is contained in:
parent
3b7deba8c8
commit
8132659329
1 changed files with 4 additions and 1 deletions
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue