summary refs log tree commit diff
path: root/pkgs/applications/kde/kaccounts-providers.nix
blob: e0e5ee3cd3261a63aa4ad97fc881eb323e1fb369 (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
{ mkDerivation
, lib
, accounts-qt
, extra-cmake-modules
, intltool
, kaccounts-integration
, kcmutils
, kcoreaddons
, kdeclarative
, kdoctools
, kio
, kpackage
, kwallet
, qtwebengine
, signond
}:

mkDerivation {
  pname = "kaccounts-providers";
  meta = with lib; {
    homepage = "https://community.kde.org/KTp/Setting_up_KAccounts";
    description = "Online account providers";
    maintainers = with maintainers; [ kennyballou ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
    intltool
    kdoctools
  ];
  buildInputs = [
    accounts-qt
    kaccounts-integration
    kcmutils
    kcoreaddons
    kdeclarative
    kio
    kpackage
    kwallet
    qtwebengine
    signond
  ];
}