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.
This commit is contained in:
parent
8b10c8d0f3
commit
9594203e07
12 changed files with 178 additions and 0 deletions
13
third_party/gopkgs/go.opencensus.io/default.nix
vendored
Normal file
13
third_party/gopkgs/go.opencensus.io/default.nix
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
pkgs.buildGo.external {
|
||||
path = "go.opencensus.io";
|
||||
src = builtins.fetchGit {
|
||||
url = "https://github.com/census-instrumentation/opencensus-go";
|
||||
rev = "b4a14686f0a98096416fe1b4cb848e384fb2b22b";
|
||||
};
|
||||
|
||||
deps = with pkgs.third_party; map (p: p.gopkg) [
|
||||
gopkgs."github.com".hashicorp.golang-lru.simplelru
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue