nixpkgs/pkgs/applications/kde/kwalletmanager.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
561 B
Nix
Raw Normal View History

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