0db1ac4ec2
Reviewed-by: William Casarin <jb55@jb55.com> Signed-off-by: Matthias Beyer <mail@beyermatthias.de> Link: https://lists.sr.ht/~andir/nixpkgs-dev/%3C20210427123311.517-1-mail@beyermatthias.de%3E
42 lines
914 B
Nix
42 lines
914 B
Nix
{ mkDerivation, lib, fetchFromGitLab, cmake, extra-cmake-modules
|
|
, ki18n
|
|
, kitemmodels
|
|
, oathToolkit
|
|
, qgpgme
|
|
, plasma-framework
|
|
, qt5 }:
|
|
|
|
mkDerivation rec {
|
|
pname = "plasma-pass";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "invent.kde.org";
|
|
owner = "plasma";
|
|
repo = "plasma-pass";
|
|
rev = "v${version}";
|
|
sha256 = "1w2mzxyrh17x7da62b6sg1n85vnh1q77wlrfxwfb1pk77y59rlf1";
|
|
};
|
|
|
|
buildInputs = [
|
|
ki18n
|
|
kitemmodels
|
|
oathToolkit
|
|
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;
|
|
};
|
|
}
|
|
|