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

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