depot/third_party/nixpkgs/pkgs/development/libraries/qt-6/modules/qtgrpc.nix

19 lines
205 B
Nix

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