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

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