mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
google-fonts: Fix macOS argument list limit issue
This commit is contained in:
parent
9a2fd03d67
commit
9cc3aaa676
1 changed files with 1 additions and 3 deletions
|
@ -37,9 +37,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
installPhase = ''
|
||||
dest=$out/share/fonts/truetype
|
||||
mkdir -p $dest
|
||||
find . -name "*.ttf" -exec cp -v {} $dest \;
|
||||
chmod -x $dest/*.ttf
|
||||
find . -name '*.ttf' -exec install -m 444 -Dt $dest '{}' +
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue