Merge pull request #155460 from veprbl/pr/ttfautohint_darwin_fix

ttfautohint: fix darwin build
This commit is contained in:
Robert Scott 2022-01-19 18:56:46 +00:00 committed by GitHub
commit 390e38d18a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,11 @@ stdenv.mkDerivation rec {
configureFlags = [ ''--with-qt=${if enableGUI then "${qtbase}/lib" else "no"}'' ];
# workaround https://github.com/NixOS/nixpkgs/issues/155458
preBuild = lib.optionalString stdenv.cc.isClang ''
rm version
'';
enableParallelBuilding = true;
dontWrapQtApps = true;