22 lines
714 B
Nix
22 lines
714 B
Nix
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ depot, ... }:
|
|
depot.third_party.buildGo.external {
|
|
path = "go.opencensus.io";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "census-instrumentation";
|
|
repo = "opencensus-go";
|
|
rev = "v0.23.0";
|
|
hash = "sha256:0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km";
|
|
};
|
|
deps = with depot.third_party; [
|
|
gopkgs."google.golang.org".grpc.codes
|
|
gopkgs."google.golang.org".grpc.grpclog
|
|
gopkgs."google.golang.org".grpc.metadata
|
|
gopkgs."google.golang.org".grpc.stats
|
|
gopkgs."google.golang.org".grpc.status
|
|
gopkgs."github.com".golang.groupcache.lru
|
|
];
|
|
}
|