Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / protoc-gen-prost-serde / default.nix
blob843dc4fc684b35c92d4d328234a324262ae8fb2d
1 { fetchCrate
2 , lib
3 , rustPlatform
4 , protobuf
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "protoc-gen-prost-serde";
9   version = "0.2.3";
11   src = fetchCrate {
12     inherit pname version;
13     sha256 = "sha256-V2Z6m9y/bBwrr1mgKXKZjVg+LqTe+GalN/AeaICyE64=";
14   };
16   cargoSha256 = "sha256-l27+Rs4TYIJXZVLj7Tjw8M5+7ivWEY0TXbLtbuzwxLw=";
18   meta = with lib; {
19     description = "A protoc plugin that generates serde serialization implementations for `protoc-gen-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   };