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

13 lines
165 B
Nix
Raw Normal View History

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