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

qtModule {
  pname = "qtwebview";
  propagatedBuildInputs = [ qtdeclarative ]
    ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ qtwebengine ]
    ++ lib.optionals stdenv.hostPlatform.isDarwin [ WebKit ];
}