1{
2 lib,
3 stdenv,
4 qtModule,
5 qtdeclarative,
6 qtwebengine,
7}:
8
9qtModule {
10 pname = "qtwebview";
11 propagatedBuildInputs = [
12 qtdeclarative
13 qtwebengine
14 ];
15 outputs = [
16 "out"
17 "dev"
18 "bin"
19 ];
20 NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-framework CoreFoundation -framework WebKit";
21}