snx-rs: Use libsoup 3.0

WebKitGTK 4.1 ABI requires libsoup 3.0. It probably only worked because `webkitgtk_4_1` propagates `libsoup_3` and we were lucky that that version got picked up.
This commit is contained in:
Jan Tojnar
2024-12-08 00:37:52 +01:00
parent 78b998647f
commit fd26de120c
+2 -2
View File
@@ -1,4 +1,4 @@
{ fetchFromGitHub, rustPlatform, lib, pkg-config, openssl, glib, atk, gtk3, libsoup, webkitgtk_4_1 }:
{ fetchFromGitHub, rustPlatform, lib, pkg-config, openssl, glib, atk, gtk3, libsoup_3, webkitgtk_4_1 }:
rustPlatform.buildRustPackage {
pname = "snx-rs";
version = "2.2.3";
@@ -11,7 +11,7 @@ rustPlatform.buildRustPackage {
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl glib atk gtk3 libsoup webkitgtk_4_1 ];
buildInputs = [ openssl glib atk gtk3 libsoup_3 webkitgtk_4_1 ];
checkFlags = [
"--skip=platform::linux::net::tests::test_default_ip"