mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
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";
|
|
}
|