mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 11:22:58 +00:00
e6653c7a1e
Fixes: 70e9e2cd81
("plasma-pass: 1.2.0 -> 1.2.1")
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
42 lines
915 B
Nix
42 lines
915 B
Nix
{ mkDerivation, lib, fetchFromGitLab, cmake, extra-cmake-modules
|
|
, ki18n
|
|
, kitemmodels
|
|
, oath-toolkit
|
|
, qgpgme
|
|
, plasma-framework
|
|
, qt5 }:
|
|
|
|
mkDerivation rec {
|
|
pname = "plasma-pass";
|
|
version = "1.2.1";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "invent.kde.org";
|
|
owner = "plasma";
|
|
repo = "plasma-pass";
|
|
sha256 = "sha256-lCNskOXkSIcMPcMnTWE37sDCXfmtP0FhyMzxeF6L0iU=";
|
|
rev = "v${version}";
|
|
};
|
|
|
|
buildInputs = [
|
|
ki18n
|
|
kitemmodels
|
|
oath-toolkit
|
|
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;
|
|
};
|
|
}
|
|
|