14 lines
199 B
Nix
14 lines
199 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
, protobuf
|
|
, grpc
|
|
, patches ? []
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtgrpc";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ protobuf grpc ];
|
|
inherit patches;
|
|
}
|