nixpkgs/pkgs/development/libraries/kde-frameworks-5.15/kwallet.nix

22 lines
649 B
Nix
Raw Normal View History

2015-10-10 18:50:36 +02:00
{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons
, kdbusaddons, kdoctools, ki18n, kiconthemes, knotifications
2015-10-18 16:24:59 +02:00
, kservice, kwidgetsaddons, kwindowsystem, libgcrypt, makeQtWrapper
2015-09-27 17:02:10 +02:00
}:
kdeFramework {
2015-09-27 17:02:10 +02:00
name = "kwallet";
2015-10-18 16:24:59 +02:00
nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
2015-09-27 17:02:10 +02:00
buildInputs = [
2015-10-10 18:50:36 +02:00
kconfig kcoreaddons kdbusaddons kiconthemes knotifications
2015-10-10 19:42:19 +02:00
kservice kwidgetsaddons libgcrypt
2015-09-27 17:02:10 +02:00
];
2015-10-10 19:42:19 +02:00
propagatedBuildInputs = [ ki18n kwindowsystem ];
2015-09-27 17:02:10 +02:00
postInstall = ''
2015-10-18 16:24:59 +02:00
wrapQtProgram "$out/bin/kwalletd5"
wrapQtProgram "$out/bin/kwallet-query"
2015-09-27 17:02:10 +02:00
'';
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}