lol
1{ mkDerivation
2, lib
3, accounts-qt
4, extra-cmake-modules
5, intltool
6, kaccounts-integration
7, kcmutils
8, kcoreaddons
9, kdeclarative
10, kdoctools
11, kio
12, kpackage
13, kwallet
14, qtwebengine
15, signond
16}:
17
18mkDerivation {
19 pname = "kaccounts-providers";
20 meta = with lib; {
21 homepage = "https://community.kde.org/KTp/Setting_up_KAccounts";
22 description = "Online account providers";
23 maintainers = with maintainers; [ kennyballou ];
24 license = licenses.gpl2Plus;
25 platforms = platforms.linux;
26 };
27 nativeBuildInputs = [
28 extra-cmake-modules
29 intltool
30 kdoctools
31 ];
32 buildInputs = [
33 accounts-qt
34 kaccounts-integration
35 kcmutils
36 kcoreaddons
37 kdeclarative
38 kio
39 kpackage
40 kwallet
41 qtwebengine
42 signond
43 ];
44}