protoc-gen-lint: init at 0.3.0

This commit is contained in:
Johan Herland
2025-06-27 13:14:35 +00:00
parent b1fb0503ec
commit 097ccc54f0
@@ -0,0 +1,31 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule (finalAttrs: {
pname = "protoc-gen-lint";
version = "0.3.0";
src = fetchFromGitHub {
owner = "ckaznocha";
repo = "protoc-gen-lint";
tag = "v${finalAttrs.version}";
hash = "sha256-8+fPkXmigP8ZqcFGCnw1KZhJQcahDjKnZUJ1eqaHhs0=";
};
vendorHash = null;
meta = {
description = "Plug-in for Google's Protocol Buffers compiler to check .proto files for style violations";
homepage = "https://github.com/ckaznocha/protoc-gen-lint";
changelog = "https://github.com/ckaznocha/protoc-gen-lint/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
jherland
jk
];
mainProgram = "protoc-gen-lint";
};
})