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

, cmake
, extra-cmake-modules

, kdbusaddons
, ki18n
, kirigami2
, kwindowsystem
, libsodium
, qtquickcontrols2
}:

mkDerivation rec {
  pname = "keysmith";

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];

  buildInputs = [
    kdbusaddons
    ki18n
    kirigami2
    kwindowsystem
    libsodium
    qtquickcontrols2
  ];

  meta = with lib; {
    description = "OTP client for Plasma Mobile and Desktop";
    mainProgram = "keysmith";
    license = licenses.gpl3;
    homepage = "https://github.com/KDE/keysmith";
    maintainers = with maintainers; [ samueldr shamilton ];
    platforms = platforms.linux;
  };
}