about summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kwallet.nix
blob: 31a29dbff921038b1334c3a2e919b06a135a8ede (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ mkDerivation, lib, extra-cmake-modules, kconfig, kconfigwidgets
, kcoreaddons , kdbusaddons, kdoctools, ki18n, kiconthemes
, knotifications , kservice, kwidgetsaddons, kwindowsystem, libgcrypt, gpgme
}:

mkDerivation {
  name = "kwallet";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  propagatedBuildInputs = [
    kconfig kconfigwidgets kcoreaddons kdbusaddons ki18n kiconthemes
    knotifications kservice kwidgetsaddons kwindowsystem libgcrypt gpgme
  ];
}