about summary refs log tree commit diff
path: root/nixpkgs/pkgs/kde/frameworks/syntax-highlighting/default.nix
blob: 4ce448e937d594e15b2155b756777c1111f457f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
  mkKdeDerivation,
  qtdeclarative,
  qttools,
  perl,
}:
mkKdeDerivation {
  pname = "syntax-highlighting";

  extraBuildInputs = [qtdeclarative];
  extraNativeBuildInputs = [qttools perl];
}