mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
Merge pull request #120770 from jb55/plasma-pass
plasma-pass: init at 1.2.0
This commit is contained in:
commit
d7e7fd74b1
41
pkgs/tools/security/plasma-pass/default.nix
Normal file
41
pkgs/tools/security/plasma-pass/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -28614,6 +28614,8 @@ in
|
|||||||
|
|
||||||
plasma-applet-volumewin7mixer = libsForQt5.callPackage ../applications/misc/plasma-applet-volumewin7mixer { };
|
plasma-applet-volumewin7mixer = libsForQt5.callPackage ../applications/misc/plasma-applet-volumewin7mixer { };
|
||||||
|
|
||||||
|
plasma-pass = libsForQt5.callPackage ../tools/security/plasma-pass { };
|
||||||
|
|
||||||
inherit (callPackages ../applications/misc/redshift {
|
inherit (callPackages ../applications/misc/redshift {
|
||||||
inherit (python3Packages) python pygobject3 pyxdg wrapPython;
|
inherit (python3Packages) python pygobject3 pyxdg wrapPython;
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreLocation ApplicationServices Foundation Cocoa;
|
inherit (darwin.apple_sdk.frameworks) CoreLocation ApplicationServices Foundation Cocoa;
|
||||||
|
Loading…
Reference in New Issue
Block a user