about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-6/modules/qtgrpc.nix
blob: 572fe471d48f761689e76239e820d9f242009a51 (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";
  propagatedBuildInputs = [ qtbase qtdeclarative ];
  buildInputs = [ protobuf grpc ];
  inherit patches;
}