about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-6/modules/qtwebchannel.nix
blob: bf0ba0f63385884f7c2836cd71d8b47e70bab84c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ qtModule
, qtbase
, qtdeclarative
, qtwebsockets
, openssl
}:

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