summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.18/kwallet.nix
blob: 7c4177e009d20122efce62f61a30f9b59d7a88c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons
, kdbusaddons, kdoctools, ki18n, kiconthemes, knotifications
, kservice, kwidgetsaddons, kwindowsystem, libgcrypt, makeQtWrapper
}:

kdeFramework {
  name = "kwallet";
  nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
  buildInputs = [
    kconfig kcoreaddons kdbusaddons kiconthemes knotifications
    kservice kwidgetsaddons libgcrypt
  ];
  propagatedBuildInputs = [ ki18n kwindowsystem ];
  postInstall = ''
    wrapQtProgram "$out/bin/kwalletd5"
    wrapQtProgram "$out/bin/kwallet-query"
  '';
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}