mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
Merge pull request #269894 from tricktron/f-fix-pyqt6-on-darwin
pyqt6: fix build on darwin
This commit is contained in:
commit
94ef0a58a3
@ -133,7 +133,10 @@ buildPythonPackage rec {
|
||||
;
|
||||
|
||||
# fix build with qt 6.6
|
||||
env.NIX_CFLAGS_COMPILE = "-fpermissive";
|
||||
env.NIX_CFLAGS_COMPILE = toString ([
|
||||
"-fpermissive"
|
||||
]
|
||||
++ lib.optional (stdenv.isDarwin) "-Wno-address-of-temporary");
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python bindings for Qt6";
|
||||
|
Loading…
Reference in New Issue
Block a user