libcommuni: fix darwin build
This commit is contained in:
parent
93123faae0
commit
1fe9787138
|
@ -19,7 +19,9 @@ stdenv.mkDerivation rec {
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
dontUseQmakeConfigure = true;
|
dontUseQmakeConfigure = true;
|
||||||
configureFlags = [ "-config" "release" ];
|
configureFlags = [ "-config" "release" ]
|
||||||
|
# Build mixes up dylibs/frameworks if one is not explicitely specified.
|
||||||
|
++ lib.optionals stdenv.isDarwin [ "-config" "qt_framework" ];
|
||||||
|
|
||||||
dontWrapQtApps = true;
|
dontWrapQtApps = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue