summary refs log blame commit diff
path: root/pkgs/development/libraries/kde-frameworks/syntax-highlighting.nix
blob: ceb8200d4c6398c7b14ccc55fa7a0f195885f517 (plain) (tree)
1
2
3
4
5
6
7
8
9
                   
                                            

  
              
                               

                                              
                                                                 
    


                                                   
 
{ mkDerivation, lib
, extra-cmake-modules, perl, qtbase, qttools
}:

mkDerivation {
  name = "syntax-highlighting";
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
    broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
  };
  nativeBuildInputs = [ extra-cmake-modules perl ];
  buildInputs = [ qttools ];
  propagatedBuildInputs = [ qtbase ];
}