downonspot: remove (#376609)
[NixPkgs.git] / pkgs / development / libraries / qt-5 / modules / qtwebview.nix
blob097ff2e03a9c2ac8ab8e83e5ffb94a378f5af237
2   lib,
3   stdenv,
4   qtModule,
5   qtdeclarative,
6   qtwebengine,
7 }:
9 qtModule {
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";