12 lines
		
	
	
		
			164 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			164 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  lib,
 | 
						|
  nix-update,
 | 
						|
}:
 | 
						|
 | 
						|
{
 | 
						|
  attrPath ? null,
 | 
						|
  extraArgs ? [ ],
 | 
						|
}:
 | 
						|
 | 
						|
[ "${lib.getExe nix-update}" ] ++ extraArgs ++ lib.optionals (attrPath != null) [ attrPath ]
 |