about summary refs log tree commit diff
path: root/third_party/gopkgs/go.opencensus.io/default.nix
blob: b1ee6da1fc327a56b4f38616f2d00e2ab03b905e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ depot, pkgs, ... }:

depot.nix.buildGo.external {
  path = "go.opencensus.io";

  src = pkgs.fetchFromGitHub {
    owner = "census-instrumentation";
    repo = "opencensus-go";
    rev = "643eada29081047b355cfaa1ceb9bc307a10423c";
    sha256 = "1acmv2f5wz06abphk0yvb9igp2j5sn1v21dg1p8n109rwanwd5v4";
  };

  deps = with depot.third_party; [
    gopkgs."github.com".hashicorp.golang-lru.simplelru
    gopkgs."github.com".golang.groupcache.lru
  ];
}