protoc-gen-prost: init at 0.2.3

This commit is contained in:
Johannes Klein 2023-07-14 18:06:49 +02:00
parent fff76a5bd1
commit 3a83909e4c
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";
version = "0.2.3";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-QTt5mSUe41r2fxrgWj1l6fHC/utMVIgMi2ySsdGyl/Y=";
};
cargoSha256 = "sha256-ghXcyxG9zqUOFKGvUza29OgC3XiEtesqsAsfI/lFT08=";
meta = with lib; {
description = "Protocol Buffers compiler plugin powered by 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

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