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

15 lines
254 B
Nix
Raw Normal View History

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