25 lines
630 B
Nix
25 lines
630 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "protoc-gen-go";
|
|
version = "1.27.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "protocolbuffers";
|
|
repo = "protobuf-go";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-1L0GYXrtTYkk5eLXkfVxzbZMZKgyzSpkDaI8itb6NnA=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-yb8l4ooZwqfvenlxDRg95rqiL+hmsn0weS/dPv/oD2Y=";
|
|
|
|
subPackages = [ "cmd/protoc-gen-go" ];
|
|
|
|
meta = with lib; {
|
|
description = "Go support for Google's protocol buffers";
|
|
homepage = "https://google.golang.org/protobuf";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ jojosch ];
|
|
};
|
|
}
|