c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
12 lines
165 B
Nix
12 lines
165 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
, protobuf
|
|
, grpc
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtgrpc";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ protobuf grpc ];
|
|
}
|