2021-04-27 14:33:11 +02:00
|
|
|
{ mkDerivation, lib, fetchFromGitLab, cmake, extra-cmake-modules
|
|
|
|
, ki18n
|
|
|
|
, kitemmodels
|
2022-04-04 03:08:24 +02:00
|
|
|
, oath-toolkit
|
2021-04-27 14:33:11 +02:00
|
|
|
, qgpgme
|
|
|
|
, plasma-framework
|
|
|
|
, qt5 }:
|
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "plasma-pass";
|
2024-02-26 18:39:28 +01:00
|
|
|
version = "1.2.2";
|
2021-04-27 14:33:11 +02:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "invent.kde.org";
|
|
|
|
owner = "plasma";
|
|
|
|
repo = "plasma-pass";
|
2024-02-26 18:39:28 +01:00
|
|
|
sha256 = "sha256-fEYH3cvDZzEKpYqkTVqxxh3rhV75af8dZUHxQq8fPNg=";
|
2023-08-14 13:19:40 +02:00
|
|
|
rev = "v${version}";
|
2021-04-27 14:33:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
ki18n
|
|
|
|
kitemmodels
|
2022-04-04 03:08:24 +02:00
|
|
|
oath-toolkit
|
2021-04-27 14:33:11 +02:00
|
|
|
qgpgme
|
|
|
|
plasma-framework
|
|
|
|
qt5.qtbase
|
|
|
|
qt5.qtdeclarative
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A Plasma applet to access passwords from pass, the standard UNIX password manager";
|
|
|
|
homepage = "https://invent.kde.org/plasma/plasma-pass";
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|