clan-app: fix webiview-lib under darwin
This commit is contained in:
@@ -17,6 +17,9 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"path": "../webview-ui"
|
"path": "../webview-ui"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "../webview-lib"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"settings": {
|
"settings": {
|
||||||
|
|||||||
@@ -17,13 +17,17 @@ pkgs.stdenv.mkDerivation {
|
|||||||
];
|
];
|
||||||
|
|
||||||
# Dependencies used during the build process, if any
|
# Dependencies used during the build process, if any
|
||||||
buildInputs = with pkgs; [
|
buildInputs =
|
||||||
gnumake
|
with pkgs;
|
||||||
cmake
|
[
|
||||||
pkg-config
|
gnumake
|
||||||
webkitgtk_6_0
|
cmake
|
||||||
gtk4
|
pkg-config
|
||||||
];
|
]
|
||||||
|
++ pkgs.lib.optionals stdenv.isLinux [
|
||||||
|
webkitgtk_6_0
|
||||||
|
gtk4
|
||||||
|
];
|
||||||
|
|
||||||
meta = with pkgs.lib; {
|
meta = with pkgs.lib; {
|
||||||
description = "Tiny cross-platform webview library for C/C++. Uses WebKit (GTK/Cocoa) and Edge WebView2 (Windows)";
|
description = "Tiny cross-platform webview library for C/C++. Uses WebKit (GTK/Cocoa) and Edge WebView2 (Windows)";
|
||||||
|
|||||||
Reference in New Issue
Block a user