about summary refs log tree commit diff
path: root/third_party/gopkgs/google.golang.org/genproto/default.nix
blob: 50280296b84d5f4e98e35977fc4cb4353d4c286e (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 = "0243a4be9c8f1264d238fdc2895620b4d9baf9e1";
  };

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