2017-05-10 00:30:51 +01:00
|
|
|
{
|
|
|
|
mkDerivation, lib, kdepimTeam,
|
|
|
|
extra-cmake-modules, kdoctools,
|
2018-07-17 21:11:16 +01:00
|
|
|
grantlee, kcodecs, kconfigwidgets, kemoticons, ki18n, kiconthemes, kio,
|
2018-12-03 13:01:40 +00:00
|
|
|
kdesignerplugin, ktextwidgets, sonnet, syntax-highlighting, qttools,
|
|
|
|
qtspeech
|
2017-05-10 00:30:51 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
|
|
|
name = "kpimtextedit";
|
|
|
|
meta = {
|
|
|
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
|
|
|
maintainers = kdepimTeam;
|
|
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
|
|
buildInputs = [
|
2018-07-17 21:11:16 +01:00
|
|
|
grantlee kcodecs kconfigwidgets kemoticons ki18n kiconthemes kio kdesignerplugin
|
2018-12-03 13:01:40 +00:00
|
|
|
sonnet syntax-highlighting qttools qtspeech
|
2017-05-10 00:30:51 +01:00
|
|
|
];
|
|
|
|
propagatedBuildInputs = [ ktextwidgets ];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
}
|