tvl-depot/third_party/gopkgs/google.golang.org/genproto/default.nix
Vincent Ambo 9594203e07 feat(third_party/gopkgs): Import external packages for Google Cloud
These packages contain the Cloud SDK for Go. There is currently a
linker issue (presumably due to something in `buildGo.nix`) that means
that projects using them can not actually be built.
2019-12-13 12:12:06 +00:00

14 lines
368 B
Nix

{ 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
];
}