about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kwalletmanager.nix
blob: 63534d584d9f543f91cbb3aec53c30cc55cadf9d (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
{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
, kauth
, kcmutils
, kconfigwidgets
, kcoreaddons
, kdbusaddons
, kwallet
, kxmlgui
}:

mkDerivation {
  pname = "kwalletmanager";
  meta = {
    homepage = "https://apps.kde.org/kwalletmanager5/";

    description = "KDE wallet management tool";
    mainProgram = "kwalletmanager5";
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ fridh ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    kauth kcmutils kconfigwidgets kcoreaddons kdbusaddons
    kwallet kxmlgui
  ];
}