nixpkgs/pkgs/applications/kde/kleopatra.nix
André Vitor de Lima Matos cbffc686f4 Revert "kleopatra: fix broken build"
This reverts commit a4fda24f16.
2022-09-08 12:04:23 -03:00

25 lines
665 B
Nix

{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
boost, gpgme, kcmutils, kdbusaddons, kiconthemes, kitemmodels, kmime,
knotifications, kwindowsystem, kxmlgui, libkleo, kcrash
}:
mkDerivation {
pname = "kleopatra";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
boost gpgme kcmutils kdbusaddons kiconthemes kitemmodels kmime
knotifications kwindowsystem kxmlgui libkleo kcrash
];
meta = {
homepage = "https://apps.kde.org/kleopatra/";
description = "Certificate manager and unified crypto GUI";
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
}