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

18 lines
531 B
Nix
Raw Normal View History

{
mkDerivation, lib, copyPathsToStore,
extra-cmake-modules, perl,
karchive, kconfig, kguiaddons, ki18n, kiconthemes, kio, kparts, libgit2,
qtscript, qtxmlpatterns, sonnet, syntax-highlighting
2016-04-21 17:32:21 +02:00
}:
mkDerivation {
2016-04-21 17:32:21 +02:00
name = "ktexteditor";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules perl ];
buildInputs = [
karchive kconfig kguiaddons ki18n kiconthemes kio libgit2 qtscript
2016-12-14 00:53:43 +01:00
qtxmlpatterns sonnet syntax-highlighting
2016-04-21 17:32:21 +02:00
];
propagatedBuildInputs = [ kparts ];
2016-04-21 17:32:21 +02:00
}