Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / kcalutils.nix
blob591e28cd737f1ffaba7d7d0050253e4ae144a8a0
2   mkDerivation, lib, kdepimTeam,
3   extra-cmake-modules, kdoctools,
4   grantlee, kcalendarcore, kconfig, kontactinterface, kcoreaddons,
5   kidentitymanagement, kpimtextedit,
6 }:
8 mkDerivation {
9   pname = "kcalutils";
10   meta = {
11     license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
12     maintainers = kdepimTeam;
13   };
14   nativeBuildInputs = [ extra-cmake-modules kdoctools ];
15   buildInputs = [
16     grantlee kcalendarcore kconfig kontactinterface kcoreaddons
17     kidentitymanagement kpimtextedit
18   ];
19   outputs = [ "out" "dev" ];
20   postInstall = ''
21     # added as an include directory by cmake files and fails to compile if it's missing
22     mkdir -p "$dev/include/KF5"
23   '';