9 lines
		
	
	
	
		
			161 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			161 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ inputs, ... }:
 | 
						|
final: prev:
 | 
						|
let
 | 
						|
  inherit (final) stdenv;
 | 
						|
  inherit (stdenv.hostPlatform) system;
 | 
						|
in
 | 
						|
{
 | 
						|
  dae = inputs.dae.packages."${system}".dae-unstable;
 | 
						|
}
 |