summary refs log tree commit diff
path: root/pkgs/applications/kde/kitinerary.nix
blob: d795e4fac4c89eb27df2ac532585cdd5c3def89a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ mkDerivation, lib, extra-cmake-modules
, qtdeclarative, ki18n, kmime, kpkpass
, poppler, kcontacts, kcalendarcore
, shared-mime-info, zxing-cpp
}:

mkDerivation {
  pname = "kitinerary";
  meta = {
    license = with lib.licenses; [ lgpl21 ];
    maintainers = [ lib.maintainers.bkchr ];
  };
  nativeBuildInputs = [
    extra-cmake-modules
    shared-mime-info # for update-mime-database
  ];
  buildInputs = [
    qtdeclarative kmime kpkpass poppler
    kcontacts kcalendarcore ki18n zxing-cpp
  ];

  outputs = [ "out" "dev" ];
}