18 lines
475 B
Nix
18 lines
475 B
Nix
{ kdeFramework, lib, copyPathsToStore
|
|
, ecm, perl
|
|
, karchive, kconfig, kguiaddons, kiconthemes, kparts
|
|
, libgit2
|
|
, qtscript, qtxmlpatterns
|
|
, ki18n, kio, sonnet, syntax-highlighting
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "ktexteditor";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ ecm perl ];
|
|
propagatedBuildInputs = [
|
|
karchive kconfig kguiaddons ki18n kiconthemes kio kparts libgit2 qtscript
|
|
qtxmlpatterns sonnet syntax-highlighting
|
|
];
|
|
}
|