mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
31 lines
700 B
Nix
31 lines
700 B
Nix
{ fetchCrate
|
|
, lib
|
|
, rustPlatform
|
|
, protobuf
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "protoc-gen-rust";
|
|
version = "3.2.0";
|
|
|
|
src = fetchCrate {
|
|
inherit version;
|
|
pname = "protobuf-codegen";
|
|
sha256 = "sha256-9Rf7GI/qxoqlISD169TJwUVAdJn8TpxTXDNxiQra2UY=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-i1ZIEbU6tw7xA1w+ffD/h1HIkOwVep9wQJys9Bydvv0=";
|
|
|
|
cargoBuildFlags = ["--bin" pname];
|
|
|
|
nativeBuildInputs = [ protobuf ];
|
|
|
|
meta = with lib; {
|
|
description = "Protobuf plugin for generating Rust code";
|
|
mainProgram = "protoc-gen-rust";
|
|
homepage = "https://github.com/stepancheg/rust-protobuf";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lucperkins ];
|
|
};
|
|
}
|