Skip to content

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
 

‎pkgs/development/libraries/webkitgtk/default.nix

+6-3
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
libsecret,
3737
libxslt,
3838
harfbuzz,
39+
icu,
3940
hyphen,
4041
libsysprof-capture,
4142
libpthreadstubs,
@@ -79,7 +80,7 @@
7980
# https://webkitgtk.org/2024/10/04/webkitgtk-2.46.html recommends building with clang.
8081
clangStdenv.mkDerivation (finalAttrs: {
8182
pname = "webkitgtk";
82-
version = "2.46.6";
83+
version = "2.48.0";
8384
name = "${finalAttrs.pname}-${finalAttrs.version}+abi=${
8485
if lib.versionAtLeast gtk3.version "4.0" then
8586
"6.0"
@@ -99,7 +100,7 @@ clangStdenv.mkDerivation (finalAttrs: {
99100

100101
src = fetchurl {
101102
url = "https://webkitgtk.org/releases/webkitgtk-${finalAttrs.version}.tar.xz";
102-
hash = "sha256-8rMd5pMiC6m6t2zm3f5bC/qyUVyysKcPPFTUBQdmwys=";
103+
hash = "sha256-lJBKVc8S1EpONs6tr/8C1G2nPXa+m0dp80y/3w7r+I4=";
103104
};
104105

105106
patches = lib.optionals clangStdenv.hostPlatform.isLinux [
@@ -135,6 +136,7 @@ clangStdenv.mkDerivation (finalAttrs: {
135136
at-spi2-core
136137
cairo # required even when using skia
137138
enchant2
139+
flite
138140
libavif
139141
libepoxy
140142
libjxl
@@ -143,6 +145,7 @@ clangStdenv.mkDerivation (finalAttrs: {
143145
gst-plugins-base
144146
harfbuzz
145147
hyphen
148+
icu
146149
libGL
147150
libGLU
148151
libgbm
@@ -186,7 +189,7 @@ clangStdenv.mkDerivation (finalAttrs: {
186189
geoclue2
187190
]
188191
++ lib.optionals enableExperimental [
189-
flite
192+
# For ENABLE_WEB_RTC
190193
openssl
191194
]
192195
++ lib.optionals withLibsecret [

0 commit comments

Comments
 (0)
Failed to load comments.