summary refs log tree commit diff
path: root/pkgs/applications/plasma-mobile/plasma-dialer.nix
blob: a93020e4df1df631c19072febe15ad30f8ecdc0e (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
{ lib
, mkDerivation

, cmake
, extra-cmake-modules

, kcontacts
, kcoreaddons
, kdbusaddons
, ki18n
, kirigami2
, knotifications
, kpeople
, libphonenumber
, libpulseaudio
, modemmanager-qt
, protobuf
, pulseaudio-qt
, qtfeedback
, qtquickcontrols2
}:

mkDerivation rec {
  pname = "plasma-dialer";

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];

  buildInputs = [
    kcontacts
    kcoreaddons
    kdbusaddons
    ki18n
    kirigami2
    knotifications
    kpeople
    libphonenumber
    libpulseaudio
    modemmanager-qt
    protobuf # Needed by libphonenumber
    pulseaudio-qt
    qtfeedback
    qtquickcontrols2
  ];

  meta = with lib; {
    description = "Dialer for Plasma Mobile";
    homepage = "https://invent.kde.org/plasma-mobile/plasma-dialer";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ samueldr ];
  };
}