qt6.qtwebengine: revert commit that breaks graphics acceleration on Mesa 25.2

K900 5cfa0482 b4d7d838

+11
+11
pkgs/development/libraries/qt-6/modules/qtwebengine/default.nix
··· 64 64 bootstrap_cmds, 65 65 cctools, 66 66 xcbuild, 67 + 68 + fetchpatch, 67 69 }: 68 70 69 71 qtModule { ··· 110 112 111 113 # Reproducibility QTBUG-136068 112 114 ./gn-object-sorted.patch 115 + 116 + # Revert "Create EGLImage with eglCreateDRMImageMESA() for exporting dma_buf" 117 + # Mesa 25.2 dropped eglCreateDRMImageMESA, so this no longer works. 118 + # There are better ways to do this, but this is the easy fix for now. 119 + (fetchpatch { 120 + url = "https://invent.kde.org/qt/qt/qtwebengine/-/commit/ddcd30454aa6338d898c9d20c8feb48f36632e16.diff"; 121 + revert = true; 122 + hash = "sha256-ht7C3GIEaPtmMGLzQKOtMqE9sLKdqqYCgi/W6b430YU="; 123 + }) 113 124 ]; 114 125 115 126 postPatch = ''