nixpkgs/pkgs/applications/kde/kpimtextedit.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
817 B
Nix
Raw Normal View History

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