Change-Id: I10a44b92391a8ac4d7ec5e4b878953c215f59908 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6620 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			181 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			181 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ depot ? import ../../. { }
 | 
						|
, pkgs ? depot.third_party.nixpkgs
 | 
						|
}:
 | 
						|
 | 
						|
pkgs.mkShell {
 | 
						|
  name = "tvix-eval-dev-env";
 | 
						|
  packages = [
 | 
						|
    pkgs.cargo
 | 
						|
    pkgs.rustc
 | 
						|
    pkgs.clippy
 | 
						|
  ];
 | 
						|
}
 |