summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/modules/qtwebview.nix
blob: dccc3d6f81ea5519e42210e62b3e5c5f3986edd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ lib, stdenv, qtModule, qtdeclarative, qtwebengine, CoreFoundation, WebKit }:

qtModule {
  pname = "qtwebview";
  qtInputs = [ qtdeclarative qtwebengine ];
  buildInputs = lib.optionals stdenv.isDarwin [
    CoreFoundation
    WebKit
  ];
  outputs = [ "out" "dev" "bin" ];
  NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-framework CoreFoundation -framework WebKit";
}