nixpkgs/pkgs/tools/security/plasma-pass/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

42 lines
913 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.2";
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "plasma";
repo = "plasma-pass";
sha256 = "sha256-fEYH3cvDZzEKpYqkTVqxxh3rhV75af8dZUHxQq8fPNg=";
rev = "v${version}";
};
buildInputs = [
ki18n
kitemmodels
oath-toolkit
qgpgme
plasma-framework
qt5.qtbase
qt5.qtdeclarative
];
nativeBuildInputs = [ cmake extra-cmake-modules ];
meta = with lib; {
description = "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;
};
}