about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/kde-frameworks/syntax-highlighting.nix
blob: a295b23f32101868b488148e84d01bef4e9470ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ mkDerivation
, extra-cmake-modules, perl, qtbase, qttools
}:

mkDerivation {
  name = "syntax-highlighting";
  nativeBuildInputs = [ extra-cmake-modules perl ];
  buildInputs = [ qttools ];
  propagatedBuildInputs = [ qtbase ];
}