nixpkgs/pkgs/applications/kde/pimcommon.nix

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

27 lines
964 B
Nix
Raw Normal View History

2017-05-09 23:34:19 +00:00
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
2020-08-23 05:12:16 +00:00
akonadi, akonadi-contacts, akonadi-mime, akonadi-search, grantlee, karchive, kcmutils, kcodecs,
kcompletion, kconfig, kconfigwidgets, kcontacts, kdbusaddons,
2020-08-23 05:12:16 +00:00
kiconthemes, kimap, kio, kitemmodels, kjobwidgets, kldap, knewstuff, kpimtextedit,
2019-08-16 12:54:58 +00:00
kpurpose, kwallet, kwindowsystem, libkdepim, qtwebengine
2017-05-09 23:34:19 +00:00
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "pimcommon";
2017-05-09 23:34:19 +00:00
meta = {
2022-10-27 20:47:29 +00:00
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
2017-05-09 23:34:19 +00:00
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
2020-08-23 05:12:16 +00:00
akonadi-mime grantlee karchive kcmutils kcodecs kcompletion kconfigwidgets
2022-04-21 19:36:44 +00:00
kdbusaddons kiconthemes kio kitemmodels kjobwidgets knewstuff kldap
2019-08-16 12:54:58 +00:00
kpurpose kwallet kwindowsystem libkdepim qtwebengine
2017-05-09 23:34:19 +00:00
];
propagatedBuildInputs = [
2022-04-21 19:36:44 +00:00
akonadi akonadi-contacts akonadi-search kconfig kcontacts kimap kpimtextedit
2017-05-09 23:34:19 +00:00
];
outputs = [ "out" "dev" ];
}