about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-6/modules/qtwebview.nix
blob: 1e7c4239779291698caae3c85decd911692e6de8 (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";
  qtInputs = [ qtdeclarative ]
    ++ lib.optionals (!stdenv.isDarwin) [ qtwebengine ];
  propagatedBuildInputs = lib.optionals stdenv.isDarwin [ WebKit ];
}