summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/syntax-highlighting.nix
blob: ceb8200d4c6398c7b14ccc55fa7a0f195885f517 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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 ];
}