plasma-pass: init at 1.2.0

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
This commit is contained in:
Matthias Beyer 2021-04-27 14:33:11 +02:00 committed by William Casarin
parent ba6f0e8f03
commit 0db1ac4ec2
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ 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;
};
}

View file

@ -28606,6 +28606,8 @@ in
plasma-applet-volumewin7mixer = libsForQt5.callPackage ../applications/misc/plasma-applet-volumewin7mixer { };
plasma-pass = libsForQt5.callPackage ../tools/security/plasma-pass { };
inherit (callPackages ../applications/misc/redshift {
inherit (python3Packages) python pygobject3 pyxdg wrapPython;
inherit (darwin.apple_sdk.frameworks) CoreLocation ApplicationServices Foundation Cocoa;