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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
210 B
Nix
Raw Normal View History

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