libcommuni: fix darwin build
This commit is contained in:
parent
93123faae0
commit
1fe9787138
1 changed files with 3 additions and 1 deletions
|
@ -19,7 +19,9 @@ stdenv.mkDerivation rec {
|
|||
enableParallelBuilding = 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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue