depot/third_party/nixpkgs/pkgs/development/libraries/qt-6/modules/qtwebview.nix

15 lines
261 B
Nix
Raw Normal View History

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