biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / protoc-gen-prost-crate / default.nix
blob1a2a1450a4bcea6f67247f834e2a0341be5f213b
1 { fetchCrate
2 , lib
3 , rustPlatform
4 , protobuf
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "protoc-gen-prost-crate";
9   version = "0.3.1";
11   src = fetchCrate {
12     inherit pname version;
13     sha256 = "sha256-MtGeU2PnVYPXb3nly2UaryjmjMz1lxcvYDjFiwf58FA=";
14   };
16   cargoSha256 = "sha256-dcKJRX/iHIWEmBD2nTMyQozxld8b7dhxxB85quPUysg=";
18   meta = with lib; {
19     description = "A protoc plugin that generates Cargo crates and include files for `protoc-gen-prost`";
20     mainProgram = "protoc-gen-prost-crate";
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   };