3842c184b6
This makes it possible to deprecate the previous alias. Change-Id: I6efe73a21dc771cfa28094bbac434a188aebfd45 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2647 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
14 lines
375 B
Nix
14 lines
375 B
Nix
{ depot, ... }:
|
|
|
|
depot.nix.buildGo.external {
|
|
path = "go.opencensus.io";
|
|
src = builtins.fetchGit {
|
|
url = "https://github.com/census-instrumentation/opencensus-go";
|
|
rev = "643eada29081047b355cfaa1ceb9bc307a10423c";
|
|
};
|
|
|
|
deps = with depot.third_party; [
|
|
gopkgs."github.com".hashicorp.golang-lru.simplelru
|
|
gopkgs."github.com".golang.groupcache.lru
|
|
];
|
|
}
|