Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / kpimtextedit.nix
blobde5afb72d1fabf6530ea5fe9df3a05e066b364a1
2   mkDerivation, lib, kdepimTeam,
3   extra-cmake-modules, kdoctools,
4   grantlee, kcodecs, kconfigwidgets, kemoticons, ki18n, kiconthemes, kio,
5   kdesignerplugin, ktextwidgets, sonnet, syntax-highlighting, qttools,
6   qtspeech
7 }:
9 mkDerivation {
10   pname = "kpimtextedit";
11   meta = {
12     license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
13     maintainers = kdepimTeam;
14   };
15   nativeBuildInputs = [ extra-cmake-modules kdoctools ];
16   buildInputs = [
17     grantlee kcodecs kconfigwidgets kemoticons ki18n kiconthemes kio kdesignerplugin
18     sonnet syntax-highlighting qttools qtspeech
19   ];
20   propagatedBuildInputs = [ ktextwidgets ];
21   outputs = [ "out" "dev" ];
22   postInstall = ''
23     # added as an include directory by cmake files and fails to compile if it's missing
24     mkdir -p "$dev/include/KF5"
25   '';