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

qtModule {
  pname = "qtgrpc";
  qtInputs = [ qtbase qtdeclarative ];
  buildInputs = [ protobuf grpc ];
}