You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
398 B
14 lines
398 B
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
shellHook = ''
|
|
export DOTFILES_SHELL_GRPC="1"
|
|
'';
|
|
|
|
buildInputs = with pkgs; [
|
|
grpc # C based gRPC (C++, Python, Ruby, Obj-C, PHP, C#).
|
|
grpcui # Interactive web UI for gRPC, like postman.
|
|
grpcurl # Like cURL, but for gRPC servers.
|
|
protobuf # gRPC data interchange format.
|
|
protobufc # C bindings for gRPC.
|
|
];
|
|
}
|