Skip to content

Commit

Permalink
protoc-go-inject-tag: init at 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ElrohirGT committed Apr 8, 2024
1 parent 59d7b10 commit 845b436
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/by-name/pr/protoc-go-inject-tag/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "protoc-go-inject-tag";
version = "1.4.0";

src = fetchFromGitHub {
owner = "favadi";
repo = "protoc-go-inject-tag";
rev = "v${version}";
sha256 = "01jsrx83pygvjx3nzfnwvb2vn5gagl79m9i67v7cfg1lzz168spj";
};

vendorHash = "sha256-tMpcJ37yGr7i91Kwz57FmJ+u2x0CAus0+yWOR10fJLo=";

meta = with lib; {
description = "Inject custom tags to protobuf golang struct";
homepage = "https://github.com/favadi/protoc-go-inject-tag/tree/v1.4.0";
license = licenses.bsd2;
maintainers = with maintainers; [elrohirgt];
mainProgram = "protoc-go-inject-tag";
};
}

0 comments on commit 845b436

Please sign in to comment.