2017-05-10 01:30:51 +02:00
|
|
|
{
|
|
|
|
mkDerivation, lib, kdepimTeam,
|
|
|
|
extra-cmake-modules, kdoctools,
|
2018-07-17 22:11:16 +02:00
|
|
|
grantlee, kcodecs, kconfigwidgets, kemoticons, ki18n, kiconthemes, kio,
|
2023-03-17 23:58:24 +01:00
|
|
|
kdesignerplugin, ktextwidgets, sonnet, syntax-highlighting, qttools,
|
2018-12-03 14:01:40 +01:00
|
|
|
qtspeech
|
2017-05-10 01:30:51 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
2020-12-25 00:05:07 +01:00
|
|
|
pname = "kpimtextedit";
|
2017-05-10 01:30:51 +02:00
|
|
|
meta = {
|
2022-10-27 22:47:29 +02:00
|
|
|
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
|
2017-05-10 01:30:51 +02:00
|
|
|
maintainers = kdepimTeam;
|
|
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
|
|
buildInputs = [
|
2018-07-17 22:11:16 +02:00
|
|
|
grantlee kcodecs kconfigwidgets kemoticons ki18n kiconthemes kio kdesignerplugin
|
2018-12-03 14:01:40 +01:00
|
|
|
sonnet syntax-highlighting qttools qtspeech
|
2017-05-10 01:30:51 +02:00
|
|
|
];
|
|
|
|
propagatedBuildInputs = [ ktextwidgets ];
|
|
|
|
outputs = [ "out" "dev" ];
|
2023-03-17 23:39:35 +01:00
|
|
|
postInstall = ''
|
|
|
|
# added as an include directory by cmake files and fails to compile if it's missing
|
|
|
|
mkdir -p "$dev/include/KF5"
|
|
|
|
'';
|
2017-05-10 01:30:51 +02:00
|
|
|
}
|