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

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