This is occasionally useful for testing //views or preparing new subtrees or subtree updates. Change-Id: I6841e5c3d105406fb960b59e16019f8444da238b Reviewed-on: https://cl.tvl.fyi/c/depot/+/11458 Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			988 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			988 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| # Shell derivation to invoke //nix/lazy-deps with the dependencies
 | |
| # that should be lazily made available in depot.
 | |
| { pkgs, depot, ... }:
 | |
| 
 | |
| depot.nix.lazy-deps {
 | |
|   age-keygen.attr = "third_party.nixpkgs.age";
 | |
|   age.attr = "third_party.nixpkgs.age";
 | |
|   depotfmt.attr = "tools.depotfmt";
 | |
|   fetch-depot-inbox.attr = "tools.fetch-depot-inbox";
 | |
|   git-r.attr = "tools.git-r";
 | |
|   gerrit-update.attr = "tools.gerrit-update";
 | |
|   gerrit.attr = "tools.gerrit-cli";
 | |
|   hash-password.attr = "tools.hash-password";
 | |
|   josh-filter.attr = "third_party.nixpkgs.josh";
 | |
|   mg.attr = "tools.magrathea";
 | |
|   nint.attr = "nix.nint";
 | |
|   niv.attr = "third_party.nixpkgs.niv";
 | |
|   rebuild-system.attr = "ops.nixos.rebuild-system";
 | |
|   rink.attr = "third_party.nixpkgs.rink";
 | |
| 
 | |
|   tf-buildkite = {
 | |
|     attr = "ops.buildkite.terraform";
 | |
|     cmd = "terraform";
 | |
|   };
 | |
| 
 | |
|   tf-glesys = {
 | |
|     attr = "ops.glesys.terraform";
 | |
|     cmd = "terraform";
 | |
|   };
 | |
| 
 | |
|   tf-keycloak = {
 | |
|     attr = "ops.keycloak.terraform";
 | |
|     cmd = "terraform";
 | |
|   };
 | |
| }
 |