about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-5/modules/qtwebview.nix
blob: 14f7937a2e24dcc8bd4951d24be43e75c2d25d28 (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.optional stdenv.isDarwin [
    CoreFoundation
    WebKit
  ];
  outputs = [ "out" "dev" "bin" ];
  NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-framework CoreFoundation -framework WebKit";
}