nixpkgs/pkgs/applications/kde/kwalletmanager.nix

29 lines
561 B
Nix
Raw Normal View History

2016-10-17 09:45:57 +01:00
{ lib
, mkDerivation
, extra-cmake-modules
2016-10-17 09:45:57 +01:00
, kdoctools
, kauth
, kcmutils
, kconfigwidgets
, kcoreaddons
, kdbusaddons
, kwallet
2016-10-17 09:45:57 +01:00
, kxmlgui
}:
2017-05-16 16:56:41 +01:00
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kwalletmanager";
2017-05-16 16:56:41 +01:00
meta = {
homepage = "https://apps.kde.org/kwalletmanager5/";
description = "KDE wallet management tool";
2017-05-16 16:56:41 +01:00
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ fridh ];
2016-10-17 09:45:57 +01:00
};
2017-05-17 20:26:11 +01:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
kauth kcmutils kconfigwidgets kcoreaddons kdbusaddons
kwallet kxmlgui
2017-05-16 16:56:41 +01:00
];
2016-10-17 09:45:57 +01:00
}