protoc-gen-prost-crate: init at 0.3.1

This commit is contained in:
Johannes Klein 2023-07-14 18:56:08 +02:00
parent 3a83909e4c
commit 8104326ce6
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ fetchCrate
, lib
, rustPlatform
, protobuf
}:
rustPlatform.buildRustPackage rec {
pname = "protoc-gen-prost-crate";
version = "0.3.1";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-MtGeU2PnVYPXb3nly2UaryjmjMz1lxcvYDjFiwf58FA=";
};
cargoSha256 = "sha256-dcKJRX/iHIWEmBD2nTMyQozxld8b7dhxxB85quPUysg=";
meta = with lib; {
description = "A protoc plugin that generates Cargo crates and include files for `protoc-gen-prost`";
homepage = "https://github.com/neoeinstein/protoc-gen-prost";
changelog = "https://github.com/neoeinstein/protoc-gen-prost/blob/main/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ felschr sitaaax ];
};
}

View File

@ -550,6 +550,8 @@ with pkgs;
protoc-gen-prost = callPackage ../development/tools/protoc-gen-prost { };
protoc-gen-prost-crate = callPackage ../development/tools/protoc-gen-prost-crate { };
protoc-gen-rust = callPackage ../development/tools/protoc-gen-rust { };
protoc-gen-twirp = callPackage ../development/tools/protoc-gen-twirp { };