2021-08-22 07:53:02 +00:00
|
|
|
{ lib, stdenv, qtModule, qtdeclarative, qtwebengine, CoreFoundation, WebKit }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
qtModule {
|
2021-05-28 09:39:13 +00:00
|
|
|
pname = "qtwebview";
|
2020-04-24 23:36:52 +00:00
|
|
|
qtInputs = [ qtdeclarative qtwebengine ];
|
2021-10-06 13:57:05 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
2021-08-22 07:53:02 +00:00
|
|
|
CoreFoundation
|
|
|
|
WebKit
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
outputs = [ "out" "dev" "bin" ];
|
2021-08-22 07:53:02 +00:00
|
|
|
NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-framework CoreFoundation -framework WebKit";
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|