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