2025-07-24 13:55:40 +02:00

16 lines
221 B
Nix

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