16 lines
		
	
	
		
			363 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			363 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  mkDerivation,
 | 
						|
  extra-cmake-modules,
 | 
						|
  boost, kconfig, kcoreaddons, kdbusaddons, ki18n, kio, kglobalaccel,
 | 
						|
  kwindowsystem, kxmlgui, kcrash
 | 
						|
}:
 | 
						|
 | 
						|
mkDerivation {
 | 
						|
  name = "kactivitymanagerd";
 | 
						|
  nativeBuildInputs = [ extra-cmake-modules ];
 | 
						|
  buildInputs = [
 | 
						|
    boost kconfig kcoreaddons kdbusaddons kglobalaccel ki18n kio kwindowsystem
 | 
						|
    kxmlgui kcrash
 | 
						|
  ];
 | 
						|
}
 |