about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/itinerary.nix
blob: c08aa346cde09108f6e2a54945b4cbdfe5a1e47a (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{ mkDerivation
, lib
, extra-cmake-modules
, karchive
, kcalendarcore
, kcontacts
, kdbusaddons
, kfilemetadata
, kholidays
, kio
, kirigami-addons
, kitemmodels
, kitinerary
, kmime
, knotifications
, kosmindoormap
, kpkpass
, kpublictransport
, kunitconversion
, libquotient
, networkmanager-qt
, qqc2-desktop-style
, qtpositioning
, qtquickcontrols2
, shared-mime-info
}:

mkDerivation {
  pname = "itinerary";
  outputs = [ "out" "dev" ];

  nativeBuildInputs = [
    extra-cmake-modules
    shared-mime-info # for update-mime-database
  ];

  buildInputs = [
    karchive
    kcalendarcore
    kcontacts
    kdbusaddons
    kfilemetadata
    kholidays
    kio
    kirigami-addons
    kitemmodels
    kitinerary
    kmime
    knotifications
    kosmindoormap
    kpkpass
    kpublictransport
    kunitconversion
    libquotient
    networkmanager-qt
    qqc2-desktop-style
    qtpositioning
    qtquickcontrols2
  ];

  meta.license = with lib.licenses; [ asl20 bsd3 cc0 lgpl2Plus ];
}