1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-20 04:48:10 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks/ktexteditor.nix

18 lines
507 B
Nix
Raw Normal View History

2016-04-21 16:32:21 +01:00
{ kdeFramework, lib, copyPathsToStore
, extra-cmake-modules, perl
2016-04-21 16:32:21 +01: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 16:32:21 +01:00
}:
kdeFramework {
name = "ktexteditor";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules 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 16:32:21 +01:00
];
}