10 lines
263 B
Nix
10 lines
263 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules, perl, qtbase, qttools
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "syntax-highlighting";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules perl qttools ];
|
|
buildInputs = [ qtbase ];
|
|
}
|