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

14 lines
219 B
Nix

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