Merge pull request #23626 from yurrriq/update/pkgs/tools/misc/lilypond-with-fonts

lilypond-with-fonts: fix typos
This commit is contained in:
Jörg Thalheim 2017-03-09 01:41:18 +01:00 committed by GitHub
commit 23990a9044

View file

@ -24,11 +24,11 @@ let
installPhase = ''
for f in {otf,supplementary-fonts}/**.{o,t}tf; do
install -Dt $out/otf -m755 otf/*
install -Dt $out/otf -m755 $f
done
for f in svg/**.{svg,woff}; do
install -Dt $out/svg -m755 svg/*
install -Dt $out/svg -m755 $f
done
'';