summary refs log blame commit diff
path: root/pkgs/applications/kde/kig.nix
blob: 7b858907795211c4223e080a24e1acca4effcdbe (plain) (tree)
1
2
3
4
5
6
7
 
                    
                                 

                                                                   

  





                                                   
                                                        

                                                                            
    

 
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  boost, karchive, kcrash, kiconthemes, kparts, ktexteditor, qtsvg,
  qtxmlpatterns,
}:

mkDerivation {
  name = "kig";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ raskin ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    boost karchive kcrash kiconthemes kparts ktexteditor qtsvg qtxmlpatterns
  ];
}