nixpkgs/pkgs/development/libraries/qt-6/modules/qtgrpc.nix
2023-10-13 06:01:14 +00:00

13 lines
178 B
Nix

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