17 lines
253 B
Nix
17 lines
253 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qtdeclarative,
|
||
|
qttools,
|
||
|
perl,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "syntax-highlighting";
|
||
|
|
||
|
extraBuildInputs = [ qtdeclarative ];
|
||
|
extraNativeBuildInputs = [
|
||
|
qttools
|
||
|
perl
|
||
|
];
|
||
|
meta.mainProgram = "ksyntaxhighlighter6";
|
||
|
}
|