Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
27 lines
627 B
Nix
27 lines
627 B
Nix
{
|
|
fetchCrate,
|
|
lib,
|
|
rustPlatform,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "protoc-gen-rust-grpc";
|
|
version = "0.8.3";
|
|
|
|
src = fetchCrate {
|
|
pname = "grpc-compiler";
|
|
inherit version;
|
|
hash = "sha256-gt+Qa68N5EkqhCAvU2ISvVPT9vYPXMySad4DCyTVHkQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-7PTe7popLS0zYYKv+K4629GkNG1wR/fhGi14a/4pkS0=";
|
|
|
|
meta = with lib; {
|
|
description = "Protobuf plugin for generating Rust code for gRPC";
|
|
homepage = "https://github.com/stepancheg/grpc-rust";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lucperkins ];
|
|
mainProgram = "protoc-gen-rust-grpc";
|
|
};
|
|
}
|