lol

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

authored by

Matthias Beyer and committed by
William Casarin
0db1ac4e ba6f0e8f

+43
+41
pkgs/tools/security/plasma-pass/default.nix
··· 1 + { mkDerivation, lib, fetchFromGitLab, cmake, extra-cmake-modules 2 + , ki18n 3 + , kitemmodels 4 + , oathToolkit 5 + , qgpgme 6 + , plasma-framework 7 + , qt5 }: 8 + 9 + mkDerivation rec { 10 + pname = "plasma-pass"; 11 + version = "1.2.0"; 12 + 13 + src = fetchFromGitLab { 14 + domain = "invent.kde.org"; 15 + owner = "plasma"; 16 + repo = "plasma-pass"; 17 + rev = "v${version}"; 18 + sha256 = "1w2mzxyrh17x7da62b6sg1n85vnh1q77wlrfxwfb1pk77y59rlf1"; 19 + }; 20 + 21 + buildInputs = [ 22 + ki18n 23 + kitemmodels 24 + oathToolkit 25 + qgpgme 26 + plasma-framework 27 + qt5.qtbase 28 + qt5.qtdeclarative 29 + ]; 30 + 31 + nativeBuildInputs = [ cmake extra-cmake-modules ]; 32 + 33 + meta = with lib; { 34 + description = "A Plasma applet to access passwords from pass, the standard UNIX password manager"; 35 + homepage = "https://invent.kde.org/plasma/plasma-pass"; 36 + license = licenses.lgpl21Plus; 37 + maintainers = with maintainers; [ matthiasbeyer ]; 38 + platforms = platforms.unix; 39 + }; 40 + } 41 +
+2
pkgs/top-level/all-packages.nix
··· 28606 28606 28607 28607 plasma-applet-volumewin7mixer = libsForQt5.callPackage ../applications/misc/plasma-applet-volumewin7mixer { }; 28608 28608 28609 + plasma-pass = libsForQt5.callPackage ../tools/security/plasma-pass { }; 28610 + 28609 28611 inherit (callPackages ../applications/misc/redshift { 28610 28612 inherit (python3Packages) python pygobject3 pyxdg wrapPython; 28611 28613 inherit (darwin.apple_sdk.frameworks) CoreLocation ApplicationServices Foundation Cocoa;