2021-11-21 22:09:43 +01:00
|
|
|
{ depot, pkgs, ... }:
|
2019-12-13 13:12:06 +01:00
|
|
|
|
2021-03-24 00:19:17 +01:00
|
|
|
depot.nix.buildGo.external {
|
2019-12-13 13:12:06 +01:00
|
|
|
path = "go.opencensus.io";
|
2021-11-21 22:09:43 +01:00
|
|
|
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "census-instrumentation";
|
|
|
|
repo = "opencensus-go";
|
2019-12-13 22:30:14 +01:00
|
|
|
rev = "643eada29081047b355cfaa1ceb9bc307a10423c";
|
2021-11-21 22:09:43 +01:00
|
|
|
sha256 = "1acmv2f5wz06abphk0yvb9igp2j5sn1v21dg1p8n109rwanwd5v4";
|
2019-12-13 13:12:06 +01:00
|
|
|
};
|
|
|
|
|
2020-08-03 21:28:16 +02:00
|
|
|
deps = with depot.third_party; [
|
2019-12-13 13:12:06 +01:00
|
|
|
gopkgs."github.com".hashicorp.golang-lru.simplelru
|
2019-12-13 22:30:14 +01:00
|
|
|
gopkgs."github.com".golang.groupcache.lru
|
2019-12-13 13:12:06 +01:00
|
|
|
];
|
|
|
|
}
|