about summary refs log tree commit diff
path: root/third_party/gopkgs/google.golang.org/genproto/default.nix
blob: c7a7b741b69ee9ce9e69cb8d9ccb20607e3751cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:

pkgs.buildGo.external {
  path = "google.golang.org/genproto";
  src = builtins.fetchGit {
    url = "https://github.com/google/go-genproto";
    rev = "55e96fffbd486c27fc0d5b4468c497d0de3f2727";
  };

  deps = with pkgs.third_party; [
    gopkgs."github.com".golang.protobuf.proto.gopkg
    gopkgs."github.com".golang.protobuf.ptypes.any.gopkg
  ];
}