3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/kde/kleopatra.nix

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

32 lines
900 B
Nix
Raw Normal View History

2017-04-07 19:21:08 +01:00
{
2022-08-30 15:13:03 +01:00
mkDerivation, fetchpatch, lib, kdepimTeam,
2017-04-07 19:21:08 +01:00
extra-cmake-modules, kdoctools,
boost, gpgme, kcmutils, kdbusaddons, kiconthemes, kitemmodels, kmime,
2018-08-20 12:44:05 +01:00
knotifications, kwindowsystem, kxmlgui, libkleo, kcrash
2017-04-07 19:21:08 +01:00
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kleopatra";
2022-08-30 15:13:03 +01:00
patches = [
(fetchpatch {
url = "https://invent.kde.org/pim/kleopatra/-/commit/87d8b00d4b2286489d5fadc9cfa07f1d721cdfe3.patch";
sha256 = "sha256-s1tXB7h0KtFwwZHx8rhpI0nLZmwhWAiraHEF3KzncMc=";
})
];
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
boost gpgme kcmutils kdbusaddons kiconthemes kitemmodels kmime
knotifications kwindowsystem kxmlgui libkleo kcrash
];
2017-04-07 19:21:08 +01:00
meta = {
homepage = "https://apps.kde.org/kleopatra/";
description = "Certificate manager and unified crypto GUI";
2017-04-07 19:21:08 +01:00
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
}