21 lines
206 B
Nix
21 lines
206 B
Nix
|
|
{
|
||
|
|
qtModule,
|
||
|
|
qtbase,
|
||
|
|
qtdeclarative,
|
||
|
|
protobuf,
|
||
|
|
grpc,
|
||
|
|
}:
|
||
|
|
|
||
|
|
qtModule {
|
||
|
|
pname = "qtgrpc";
|
||
|
|
|
||
|
|
propagatedBuildInputs = [
|
||
|
|
qtbase
|
||
|
|
qtdeclarative
|
||
|
|
];
|
||
|
|
buildInputs = [
|
||
|
|
protobuf
|
||
|
|
grpc
|
||
|
|
];
|
||
|
|
}
|