summary refs log blame commit diff
path: root/pkgs/applications/kde/kcachegrind.nix
blob: 61ff38f3168487cd8b2a230eba97860269e6c29b (plain) (tree)
1
2
3
4
5
6
7
8
9
 
                    
                                 

                                                    

  
              
                        
          

                                                   

                                                   
    
                                                        
                                                                            
 
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  karchive, ki18n, kio, perl, python3, php, qttools,
  kdbusaddons
}:

mkDerivation {
  pname = "kcachegrind";
  meta = {
    homepage = "https://apps.kde.org/kcachegrind/";
    description = "Profiler frontend";
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ orivej ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ karchive ki18n kio perl python3 php qttools kdbusaddons ];
}