qtwebengine: fix build failure due to -Wformat-security

ninja builds some components with -Wno-format, which is not compatible with the
default hardening setting of -Wformat-security in Nixpkgs.
This commit is contained in:
Thomas Tuegel 2018-05-25 15:22:47 -05:00
parent 98f2f08b4b
commit db215a62b7
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -31,6 +31,10 @@ qtModule {
enableParallelBuilding = true;
# ninja builds some components with -Wno-format,
# which cannot be set at the same time as -Wformat-security
hardeningDisable = [ "format" ];
postPatch =
# Patch Chromium build tools
''