mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
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:
parent
98f2f08b4b
commit
db215a62b7
@ -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
|
||||
''
|
||||
|
Loading…
Reference in New Issue
Block a user