Change-Id: I16dfe9295866afdd62802b6c35be66646f3f26c8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5446 Autosubmit: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			237 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			237 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ depot ? import ../.. { } }:
 | 
						|
 | 
						|
with depot.third_party.nixpkgs;
 | 
						|
 | 
						|
mkShell {
 | 
						|
  buildInputs = [
 | 
						|
    docker-compose
 | 
						|
    postgresql
 | 
						|
  ];
 | 
						|
 | 
						|
  PGPASSWORD = "password";
 | 
						|
  PGHOST = "localhost";
 | 
						|
  PGUSER = "panettone";
 | 
						|
  PGDATABASE = "panettone";
 | 
						|
}
 |