nixpkgs/pkgs/development/libraries/kde-frameworks/ktexteditor.nix

18 lines
475 B
Nix
Raw Normal View History

2016-04-21 15:32:21 +00:00
{ kdeFramework, lib, copyPathsToStore
, ecm, perl
2016-04-21 15:32:21 +00:00
, karchive, kconfig, kguiaddons, kiconthemes, kparts
, libgit2
, qtscript, qtxmlpatterns
2016-12-13 23:53:43 +00:00
, ki18n, kio, sonnet, syntax-highlighting
2016-04-21 15:32:21 +00:00
}:
kdeFramework {
name = "ktexteditor";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ ecm perl ];
propagatedBuildInputs = [
karchive kconfig kguiaddons ki18n kiconthemes kio kparts libgit2 qtscript
2016-12-13 23:53:43 +00:00
qtxmlpatterns sonnet syntax-highlighting
2016-04-21 15:32:21 +00:00
];
}