1{
2 mkDerivation,
3 extra-cmake-modules,
4 perl,
5 qtbase,
6 qttools,
7}:
8
9mkDerivation {
10 pname = "syntax-highlighting";
11 nativeBuildInputs = [
12 extra-cmake-modules
13 perl
14 ];
15 buildInputs = [ qttools ];
16 propagatedBuildInputs = [ qtbase ];
17}