about summary refs log tree commit diff
path: root/tools/depot-scanner/default.nix
blob: 59b6e53f7097f5b11529d67d4c57a83a5880547e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ depot, pkgs, ... }:

let
  localProto = depot.nix.buildGo.grpc {
    name = "code.tvl.fyi/tools/depot-scanner/proto";
    proto = ./depot_scanner.proto;
  };
in
depot.nix.buildGo.program
  {
    name = "depot-scanner";
    srcs = [
      ./main.go
    ];
    deps = [
      localProto
    ];
  } // { inherit localProto; }