mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
21 lines
359 B
Nix
21 lines
359 B
Nix
{
|
|
lib,
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
qttools,
|
|
perl,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "syntax-highlighting";
|
|
|
|
extraBuildInputs = [ qtdeclarative ];
|
|
extraNativeBuildInputs = [
|
|
qttools
|
|
perl
|
|
];
|
|
meta = {
|
|
mainProgram = "ksyntaxhighlighter6";
|
|
platforms = lib.platforms.linux ++ lib.platforms.freebsd ++ lib.platforms.darwin;
|
|
};
|
|
}
|