Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / protoc-gen-prost / default.nix
blob645ecdee30819da27d285d67656ede3c16ba83f2
1 { fetchCrate
2 , lib
3 , rustPlatform
4 , protobuf
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "protoc-gen-prost";
9   version = "0.2.3";
11   src = fetchCrate {
12     inherit pname version;
13     sha256 = "sha256-QTt5mSUe41r2fxrgWj1l6fHC/utMVIgMi2ySsdGyl/Y=";
14   };
16   cargoSha256 = "sha256-ghXcyxG9zqUOFKGvUza29OgC3XiEtesqsAsfI/lFT08=";
18   meta = with lib; {
19     description = "Protocol Buffers compiler plugin powered by Prost";
20     homepage = "https://github.com/neoeinstein/protoc-gen-prost";
21     changelog = "https://github.com/neoeinstein/protoc-gen-prost/blob/main/CHANGELOG.md";
22     license = licenses.asl20;
23     maintainers = with maintainers; [ felschr sitaaax ];
24   };