toxic: 0.15.1 -> 0.16.0
[NixPkgs.git] / pkgs / by-name / pr / protoc-gen-rust-grpc / package.nix
blob53fbba4b13131cbd6e89854c13d53ee60c20aa7a
2   fetchCrate,
3   lib,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "protoc-gen-rust-grpc";
9   version = "0.8.3";
11   src = fetchCrate {
12     pname = "grpc-compiler";
13     inherit version;
14     hash = "sha256-gt+Qa68N5EkqhCAvU2ISvVPT9vYPXMySad4DCyTVHkQ=";
15   };
17   cargoHash = "sha256-08xEPc1GaRIYLbIlSRpfBvSQcs16vduJ7v/NDg7Awfs=";
19   meta = with lib; {
20     description = "Protobuf plugin for generating Rust code for gRPC";
21     homepage = "https://github.com/stepancheg/grpc-rust";
22     license = licenses.mit;
23     maintainers = with maintainers; [ lucperkins ];
24     mainProgram = "protoc-gen-rust-grpc";
25   };