9594203e07
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.
14 lines
368 B
Nix
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
|
|
];
|
|
}
|