2021-07-26 10:45:04 +01:00
|
|
|
{ lib, stdenv, qtModule, qtdeclarative, qtwebengine, CoreFoundation, WebKit }:
|
2019-06-19 19:28:41 +01:00
|
|
|
|
2019-02-22 16:36:37 +00:00
|
|
|
qtModule {
|
2021-05-14 11:53:30 +01:00
|
|
|
pname = "qtwebview";
|
2019-02-22 16:36:37 +00:00
|
|
|
qtInputs = [ qtdeclarative qtwebengine ];
|
2021-07-26 10:45:04 +01:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin [
|
|
|
|
CoreFoundation
|
|
|
|
WebKit
|
2019-02-22 16:36:37 +00:00
|
|
|
];
|
|
|
|
outputs = [ "out" "dev" "bin" ];
|
2021-07-26 10:45:04 +01:00
|
|
|
NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-framework CoreFoundation -framework WebKit";
|
2019-06-19 19:28:41 +01:00
|
|
|
}
|