blob: e3b0a2065ae1b9f0f327fa5a953609877d22484c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ depot, ... }:
depot.buildGo.external {
path = "google.golang.org/genproto";
src = builtins.fetchGit {
url = "https://github.com/google/go-genproto";
rev = "0243a4be9c8f1264d238fdc2895620b4d9baf9e1";
};
deps = with depot.third_party; [
gopkgs."github.com".golang.protobuf.proto.gopkg
gopkgs."github.com".golang.protobuf.ptypes.any.gopkg
];
}
|