- Reduce environment pollution with a separate $bin output containing programs, plugins, and shared data. Libraries remain in $out and are not installed into the environment. - Only propagate build inputs as required.
		
			
				
	
	
		
			12 lines
		
	
	
		
			278 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			278 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  mkDerivation,
 | 
						|
  extra-cmake-modules, kdoctools,
 | 
						|
  kcoreaddons, ki18n, kwallet, kwidgetsaddons, qtbase,
 | 
						|
}:
 | 
						|
 | 
						|
mkDerivation {
 | 
						|
  name = "ksshaskpass";
 | 
						|
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
 | 
						|
  buildInputs = [ kcoreaddons ki18n kwallet kwidgetsaddons qtbase ];
 | 
						|
}
 |