about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/modules
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-06-03 21:42:59 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-06-03 21:42:59 -0400
commitc4fc74b19cae7f30151be743f3e2dca43f33ca0f (patch)
tree96038d398f203c8492d9511c0611a15f39077ebc /pkgs/development/libraries/qt-5/modules
parent493274b253da622da8e39a8f554ecdedb7286ca7 (diff)
downloadnixlib-c4fc74b19cae7f30151be743f3e2dca43f33ca0f.tar
nixlib-c4fc74b19cae7f30151be743f3e2dca43f33ca0f.tar.gz
nixlib-c4fc74b19cae7f30151be743f3e2dca43f33ca0f.tar.bz2
nixlib-c4fc74b19cae7f30151be743f3e2dca43f33ca0f.tar.lz
nixlib-c4fc74b19cae7f30151be743f3e2dca43f33ca0f.tar.xz
nixlib-c4fc74b19cae7f30151be743f3e2dca43f33ca0f.tar.zst
nixlib-c4fc74b19cae7f30151be743f3e2dca43f33ca0f.zip
qtwebengine: don’t use gn configure
qtwebengine has its own configure script, so don’t try to use gn.
Diffstat (limited to 'pkgs/development/libraries/qt-5/modules')
-rw-r--r--pkgs/development/libraries/qt-5/modules/qtwebengine.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix
index 86897cb3f16f..aa9cdb4d5ae7 100644
--- a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix
+++ b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix
@@ -33,6 +33,9 @@ qtModule {
 
   enableParallelBuilding = true;
 
+  # Don’t use the gn setup hook
+  dontUseGnConfigure = true;
+
   # ninja builds some components with -Wno-format,
   # which cannot be set at the same time as -Wformat-security
   hardeningDisable = [ "format" ];