nixpkgs/pkgs/development/libraries/qt-6/modules/qtwebchannel.nix
2022-05-23 09:37:40 +08:00

13 lines
185 B
Nix

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