qt515.qtwebengine: fix build w/glibc-2.34

Derived from Fedora 35: d122c01163?branch=rawhide
Failing Hydra build: https://hydra.nixos.org/build/153232768
This commit is contained in:
Maximilian Bosch 2021-09-18 19:42:06 +02:00
parent f81f59dfce
commit b9078e581b
No known key found for this signature in database
GPG key ID: 091DBF4D1FC46B8E

View file

@ -56,7 +56,13 @@ let
qtdeclarative = [ ./qtdeclarative.patch ];
qtscript = [ ./qtscript.patch ];
qtserialport = [ ./qtserialport.patch ];
qtwebengine = lib.optionals stdenv.isDarwin [
qtwebengine = [
# glibc 2.34 compat
(fetchpatch {
url = "https://src.fedoraproject.org/rpms/qt5-qtwebengine/raw/d122c011631137b79455850c363676c655cf9e09/f/qtwebengine-everywhere-src-5.15.5-SIGSTKSZ.patch";
sha256 = "sha256-1zS7nvbe5ZVuW/wSNOUBc2Qz0aB483Kfnz1JbzKEI+M=";
})
] ++ lib.optionals stdenv.isDarwin [
./qtwebengine-darwin-no-platform-check.patch
./qtwebengine-mac-dont-set-dsymutil-path.patch
];