These projects, which are not currently included in CI runs, don't build at the moment. Upcoming logic changes would mean that we would start including them in CI, which is undesirable until they're fixed - but I'm not going to be doing that now. Change-Id: I7c337e098be8bff00db6d99fc7236a695f5a85f5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1850 Tested-by: BuildkiteCI Reviewed-by: kanepyork <rikingcoding@gmail.com>
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			323 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			323 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { 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; meta.ci = false; }
 |