(zseri:) It seems like relativePath should be replaced with relativeFlag, as no variable with the former name exists, a boolean is as far as I can tell expected, and a boolean with a similar name exists. Lets give it a try in the CI. Change-Id: I0e7e522a41a517a38222dcda3b66731344613c1e Reviewed-on: https://cl.tvl.fyi/c/depot/+/3581 Reviewed-by: tazjin <mail@tazj.in> Autosubmit: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			306 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			306 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; }
 |