wealthfolio: 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-02 00:48:39 +01:00
parent 0d60f6f66c
commit 78b998647f

View File

@ -3,7 +3,7 @@
stdenv,
fetchFromGitHub,
cargo-tauri,
libsoup,
libsoup_3,
nodejs,
openssl,
pkg-config,
@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: {
];
buildInputs = [
libsoup
libsoup_3
openssl
webkitgtk_4_1
];