biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / protoc-gen-prost / default.nix
blob6012af0acf3c24cc67cb9c9db099461cfe4cfad2
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     mainProgram = "protoc-gen-prost";
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   };