12 lines
		
	
	
	
		
			158 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			158 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  outputs,
 | 
						|
  ...
 | 
						|
}:
 | 
						|
final: prev:
 | 
						|
let
 | 
						|
  inherit (final) stdenv;
 | 
						|
  inherit (stdenv.hostPlatform) system;
 | 
						|
in
 | 
						|
{
 | 
						|
  helix = outputs.packages."${system}".helix;
 | 
						|
}
 |