10 lines
		
	
	
	
		
			160 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
	
		
			160 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| 
								 | 
							
								{ inputs, ... }:
							 | 
						||
| 
								 | 
							
								final: prev:
							 | 
						||
| 
								 | 
							
								let
							 | 
						||
| 
								 | 
							
								  inherit (final) stdenv;
							 | 
						||
| 
								 | 
							
								  inherit (stdenv.hostPlatform) system;
							 | 
						||
| 
								 | 
							
								in
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								  helix = inputs.helix.packages."${system}".default;
							 | 
						||
| 
								 | 
							
								}
							 |