chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / pr / protoc-gen-rust-grpc / package.nix
blob3aefd22b8c676b6c1c58b555b9c0dd671f306444
1 { fetchCrate, lib, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "protoc-gen-rust-grpc";
5   version = "0.8.3";
7   src = fetchCrate {
8     pname = "grpc-compiler";
9     inherit version;
10     hash = "sha256-gt+Qa68N5EkqhCAvU2ISvVPT9vYPXMySad4DCyTVHkQ=";
11   };
13   cargoHash = "sha256-08xEPc1GaRIYLbIlSRpfBvSQcs16vduJ7v/NDg7Awfs=";
15   meta = with lib; {
16     description = "Protobuf plugin for generating Rust code for gRPC";
17     homepage = "https://github.com/stepancheg/grpc-rust";
18     license = licenses.mit;
19     maintainers = with maintainers; [ lucperkins ];
20     mainProgram = "protoc-gen-rust-grpc";
21   };