1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

pyqt4: fix build on darwin (close #751)

* build with clangStdenv
This commit is contained in:
Jason \"Don\" O'Conal 2013-07-14 13:41:26 +10:00 committed by Vladimír Čunát
parent 48a0d477db
commit 4d495c7c44

View file

@ -5621,7 +5621,11 @@ let
sip = callPackage ../development/python-modules/python-sip { };
pyqt4 = callPackage ../development/python-modules/pyqt { };
pyqt4 = callPackage ../development/python-modules/pyqt {
stdenv = if stdenv.isDarwin
then clangStdenv
else stdenv;
};
pysideApiextractor = callPackage ../development/python-modules/pyside/apiextractor.nix { };