2022-06-16 17:23:12 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, qtModule
|
|
|
|
, qtdeclarative
|
|
|
|
, qtwebengine
|
2022-12-17 10:02:37 +00:00
|
|
|
, WebKit
|
2022-06-16 17:23:12 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
qtModule {
|
|
|
|
pname = "qtwebview";
|
2023-11-16 04:20:00 +00:00
|
|
|
propagatedBuildInputs = [ qtdeclarative ]
|
2024-02-29 20:09:43 +00:00
|
|
|
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ qtwebengine ]
|
|
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ WebKit ];
|
2022-06-16 17:23:12 +00:00
|
|
|
}
|