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

17 lines
219 B
Nix

{
qtModule,
qtbase,
qtdeclarative,
qtwebsockets,
openssl,
}:
qtModule {
pname = "qtwebchannel";
propagatedBuildInputs = [
qtbase
qtdeclarative
qtwebsockets
];
buildInputs = [ openssl ];
}