tvl-depot/third_party/gopkgs/go.opencensus.io/default.nix
2020-02-21 13:54:53 +00:00

14 lines
388 B
Nix

{ depot, ... }:
depot.buildGo.external {
path = "go.opencensus.io";
src = builtins.fetchGit {
url = "https://github.com/census-instrumentation/opencensus-go";
rev = "643eada29081047b355cfaa1ceb9bc307a10423c";
};
deps = with depot.third_party; map (p: p.gopkg) [
gopkgs."github.com".hashicorp.golang-lru.simplelru
gopkgs."github.com".golang.groupcache.lru
];
}