nixpkgs/pkgs/applications/kde/pimcommon.nix

27 lines
952 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 = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
2020-08-23 05:12:16 +00:00
akonadi-mime grantlee karchive kcmutils kcodecs kcompletion kconfigwidgets
kdbusaddons kiconthemes kio kitemmodels kjobwidgets knewstuff kldap kpimtextedit
2019-08-16 12:54:58 +00:00
kpurpose kwallet kwindowsystem libkdepim qtwebengine
2017-05-09 23:34:19 +00:00
];
propagatedBuildInputs = [
2020-08-23 05:12:16 +00:00
akonadi akonadi-contacts akonadi-search kconfig kcontacts kimap
2017-05-09 23:34:19 +00:00
];
outputs = [ "out" "dev" ];
}