about summary refs log tree commit diff
path: root/pkgs/applications/maui/mauikit-accounts.nix
blob: 24308b76248311109748f4f717487377ff7b697b (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
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, kconfig
, kio
, mauikit
}:

mkDerivation {
  pname = "mauikit-accounts";

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];

  buildInputs = [
    kconfig
    kio
    mauikit
  ];

  meta = with lib; {
    homepage = "https://invent.kde.org/maui/mauikit-accounts";
    description = "MauiKit utilities to handle User Accounts";
    license = licenses.lgpl21Plus;
    maintainers = with maintainers; [ onny ];
  };
}