13 lines
195 B
Nix
13 lines
195 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qtdeclarative,
|
||
|
qttools,
|
||
|
perl,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "syntax-highlighting";
|
||
|
|
||
|
extraBuildInputs = [qtdeclarative];
|
||
|
extraNativeBuildInputs = [qttools perl];
|
||
|
}
|