nixpkgs/pkgs/applications/kde/libkleo.nix

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

22 lines
613 B
Nix
Raw Normal View History

2017-05-10 02:32:38 +03:00
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
boost, qgpgme, kcodecs, kcompletion, kconfig, kcoreaddons, ki18n, kitemmodels,
kpimtextedit, kwidgetsaddons, kwindowsystem
}:
mkDerivation {
2020-12-25 02:05:07 +03:00
pname = "libkleo";
2017-05-10 02:32:38 +03:00
meta = {
2022-10-27 23:47:29 +03:00
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
2017-05-10 02:32:38 +03:00
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
boost kcodecs kcompletion kconfig kcoreaddons ki18n kitemmodels
kpimtextedit kwidgetsaddons kwindowsystem
];
propagatedBuildInputs = [ qgpgme ];
outputs = [ "out" "dev" ];
}