clan-app: fix webiview-lib under darwin

This commit is contained in:
Qubasa
2025-01-06 19:39:21 +01:00
parent 04e644cacc
commit bd9536e8f9
2 changed files with 14 additions and 7 deletions

View File

@@ -17,6 +17,9 @@
}, },
{ {
"path": "../webview-ui" "path": "../webview-ui"
},
{
"path": "../webview-lib"
} }
], ],
"settings": { "settings": {

View File

@@ -17,10 +17,14 @@ pkgs.stdenv.mkDerivation {
]; ];
# Dependencies used during the build process, if any # Dependencies used during the build process, if any
buildInputs = with pkgs; [ buildInputs =
with pkgs;
[
gnumake gnumake
cmake cmake
pkg-config pkg-config
]
++ pkgs.lib.optionals stdenv.isLinux [
webkitgtk_6_0 webkitgtk_6_0
gtk4 gtk4
]; ];