biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / protoc-gen-prost-serde / default.nix
blob7ee87e622119f6e5d0e0752ee6fca065ef0fa6d1
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     mainProgram = "protoc-gen-prost-serde";
21     homepage = "https://github.com/neoeinstein/protoc-gen-prost";
22     changelog = "https://github.com/neoeinstein/protoc-gen-prost/blob/main/CHANGELOG.md";
23     license = licenses.asl20;
24     maintainers = with maintainers; [ felschr sitaaax ];
25   };