nixpkgs/pkgs/applications/kde/kleopatra.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
698 B
Nix
Raw Normal View History

2017-04-07 18:21:08 +00:00
{
mkDerivation, lib, kdepimTeam,
2017-04-07 18:21:08 +00:00
extra-cmake-modules, kdoctools,
boost, gpgme, kcmutils, kdbusaddons, kiconthemes, kitemmodels, kmime,
2023-03-17 22:39:35 +00:00
knotifications, kwindowsystem, kxmlgui, libkleo, kcrash, kpipewire
2017-04-07 18:21:08 +00:00
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kleopatra";
2022-08-30 14:13:03 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
boost gpgme kcmutils kdbusaddons kiconthemes kitemmodels kmime
2023-03-17 22:39:35 +00:00
knotifications kwindowsystem kxmlgui libkleo kcrash kpipewire
2022-08-30 14:13:03 +00:00
];
2017-04-07 18:21:08 +00:00
meta = {
homepage = "https://apps.kde.org/kleopatra/";
description = "Certificate manager and unified crypto GUI";
2022-10-27 20:47:29 +00:00
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
2017-04-07 18:21:08 +00:00
maintainers = kdepimTeam;
};
}