forked from mirrors/nixpkgs
google-fonts: Fix macOS argument list limit issue
This commit is contained in:
parent
9a2fd03d67
commit
9cc3aaa676
|
@ -37,9 +37,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
dest=$out/share/fonts/truetype
|
dest=$out/share/fonts/truetype
|
||||||
mkdir -p $dest
|
find . -name '*.ttf' -exec install -m 444 -Dt $dest '{}' +
|
||||||
find . -name "*.ttf" -exec cp -v {} $dest \;
|
|
||||||
chmod -x $dest/*.ttf
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in a new issue