+5
-2
pkgs/development/libraries/webkitgtk/default.nix
+5
-2
pkgs/development/libraries/webkitgtk/default.nix
···
57
57
fontconfig,
58
58
freetype,
59
59
openssl,
60
+
openxr-loader,
60
61
sqlite,
61
62
gst-plugins-base,
62
63
gst-plugins-bad,
···
80
81
# https://webkitgtk.org/2024/10/04/webkitgtk-2.46.html recommends building with clang.
81
82
clangStdenv.mkDerivation (finalAttrs: {
82
83
pname = "webkitgtk";
83
-
version = "2.48.6";
84
+
version = "2.50.0";
84
85
name = "${finalAttrs.pname}-${finalAttrs.version}+abi=${
85
86
if lib.versionAtLeast gtk3.version "4.0" then
86
87
"6.0"
···
100
101
101
102
src = fetchurl {
102
103
url = "https://webkitgtk.org/releases/webkitgtk-${finalAttrs.version}.tar.xz";
103
-
hash = "sha256-2awwNLejnCqqVn5hErMSSxWOWRp0Q55Gl0oDHdDkTiQ=";
104
+
hash = "sha256-5WS4CZ+aOuMkCVObKQu9KtCE6ZttItSqxeUeRVTfi8I=";
104
105
};
105
106
106
107
patches = lib.optionals clangStdenv.hostPlatform.isLinux [
···
189
190
++ lib.optionals enableExperimental [
190
191
# For ENABLE_WEB_RTC
191
192
openssl
193
+
# For ENABLE_WEBXR
194
+
openxr-loader
192
195
]
193
196
++ lib.optionals withLibsecret [
194
197
libsecret