diff options
author | Kane York <kanepyork@gmail.com> | 2020-07-17T03·31-0700 |
---|---|---|
committer | Kane York <rikingcoding@gmail.com> | 2020-07-17T20·01+0000 |
commit | f6a9706b3b1a93a3c6ef79b594bdf1d05eb46459 (patch) | |
tree | 47f517761c60aeb03084004f64c0974e2854733d /third_party/bufbuild | |
parent | cbff4fab9e0125290dbfc253fbdd6727c6600473 (diff) |
feat(3p/bufbuild): Import buf r/1348
Change-Id: Ibb35980ce3a398dd7af1c14df9eba84f0fa414b7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1243 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: isomer <isomer@tvl.fyi> Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'third_party/bufbuild')
-rw-r--r-- | third_party/bufbuild/default.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/third_party/bufbuild/default.nix b/third_party/bufbuild/default.nix new file mode 100644 index 000000000000..7706067e2012 --- /dev/null +++ b/third_party/bufbuild/default.nix @@ -0,0 +1,27 @@ +# buf.build is a Protobuf linter and breaking change detector. +# Several binaries are produced. +{ pkgs, lib, ... }: + +pkgs.buildGoModule { + pname = "buf"; + version = "v0.20.1"; + vendorSha256 = "1gg5c7aiqb4w1zxwsraxxpln33xkmkzlp1h69xgi9i08zvrfipqs"; + + src = pkgs.fetchFromGitHub { + owner = "bufbuild"; + repo = "buf"; + rev = "5e8bf4c800de911764ffdf8d2188b7f6f54476e4"; + sha256 = "1rni5swfnb4sbrd9rls4mc3902xhqrlsja96lfcdfjzx08g6kg20"; + }; + + # TODO(riking): postinstall produce shell completions for bash, fish, zsh + # bin/buf bash-completion + # bin/buf zsh-completion + # # bin/buf manpages # not yet functional + + meta = with lib; { + description = "Protobuf linter and breaking change detector"; + homepage = "https://buf.build/docs/introduction"; + license = licenses.asl20; + }; +} |