Skip to content

Commit

Permalink
Merge pull request #49085 from hamishmack/google-fonts-macos
Browse files Browse the repository at this point in the history
google-fonts: fix on macOS
  • Loading branch information
joachifm committed Oct 29, 2018
2 parents 3aec530 + 9cc3aaa commit 3947b88
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pkgs/data/fonts/google-fonts/default.nix
Expand Up @@ -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; {
Expand Down

0 comments on commit 3947b88

Please sign in to comment.