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

, cmake
, extra-cmake-modules

, kcontacts
, kcoreaddons
, kirigami2
, kirigami-addons
, kpeople
, kpeoplevcard
, qtquickcontrols2
}:

mkDerivation rec {
  pname = "plasma-phonebook";

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];

  buildInputs = [
    kcontacts
    kcoreaddons
    kirigami2
    kirigami-addons
    kpeople
    kpeoplevcard
    qtquickcontrols2
  ];

  meta = with lib; {
    description = "Phone book for Plasma Mobile";
    homepage = "https://invent.kde.org/plasma-mobile/plasma-phonebook";
    # https://invent.kde.org/plasma-mobile/plasma-phonebook/-/commit/3ac27760417e51c051c5dd44155c3f42dd000e4f
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ samueldr ];
  };
}