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

                                                                   

  
              
                
          

                                           


                                                   
                                                        

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

mkDerivation {
  pname = "kig";
  meta = {
    homepage = "https://apps.kde.org/kig/";
    description = "Interactive geometry";
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ raskin ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    boost karchive kcrash kiconthemes kparts ktexteditor qtsvg qtxmlpatterns
  ];
}