summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.19/kwallet.nix
blob: 5ade5f63a8d043d3d43097ae16c8a5384a906bc1 (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, kconfigwidgets
, kcoreaddons , kdbusaddons, kdoctools, ki18n, kiconthemes
, knotifications , kservice, kwidgetsaddons, kwindowsystem, libgcrypt
, makeQtWrapper }:

kdeFramework {
  name = "kwallet";
  nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
  buildInputs = [
    kconfig kconfigwidgets 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 ];
  };
}