tvl-depot/third_party/gopkgs/go.opencensus.io/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

13 lines
339 B
Nix

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