We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 083902d commit b29f28aCopy full SHA for b29f28a
pkgs/development/libraries/qt-6/modules/qtwebengine/default.nix
@@ -66,6 +66,7 @@
66
bootstrap_cmds,
67
cctools,
68
xcbuild,
69
+ fetchpatch,
70
}:
71
72
qtModule {
@@ -114,6 +115,15 @@ qtModule {
114
115
116
# Override locales install path so they go to QtWebEngine's $out
117
./locales-path.patch
118
+
119
+ # Fix build of vendored xnnpack on aarch64/gcc14
120
+ # FIXME: remove when upstream updates
121
+ (fetchpatch {
122
+ url = "https://github.com/google/XNNPACK/commit/1b11a8b0620afe8c047304273674c4c57c289755.patch";
123
+ stripLen = 1;
124
+ extraPrefix = "src/3rdparty/chromium/third_party/xnnpack/src/";
125
+ hash = "sha256-GUESVNR88I1K2V5xr0e09ec4j2eselMhNN06+PCcINM=";
126
+ })
127
];
128
129
postPatch =
0 commit comments