nixpkgs/pkgs/desktops/kde-5/frameworks-5.19/kwallet.nix
2016-03-01 10:36:00 -06:00

21 lines
680 B
Nix

{ 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 ];
};
}