75 lines
1.1 KiB
Nix
75 lines
1.1 KiB
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
kdepimTeam,
|
|
extra-cmake-modules,
|
|
kdoctools,
|
|
akonadi,
|
|
akonadi-notes,
|
|
kcalendarcore,
|
|
kcmutils,
|
|
kcrash,
|
|
kdbusaddons,
|
|
kidentitymanagement,
|
|
kldap,
|
|
kmailtransport,
|
|
knewstuff,
|
|
knotifications,
|
|
knotifyconfig,
|
|
kparts,
|
|
kross,
|
|
ktexteditor,
|
|
kuserfeedback,
|
|
kwallet,
|
|
libkdepim,
|
|
libkleo,
|
|
pimcommon,
|
|
qttools,
|
|
karchive,
|
|
mailcommon,
|
|
messagelib,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "pim-data-exporter";
|
|
meta = {
|
|
homepage = "https://apps.kde.org/pimdataexporter/";
|
|
description = "Saves and restores all data from PIM apps";
|
|
license = with lib.licenses; [
|
|
gpl2Plus
|
|
lgpl21Plus
|
|
fdl12Plus
|
|
];
|
|
maintainers = kdepimTeam;
|
|
};
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
];
|
|
buildInputs = [
|
|
akonadi
|
|
akonadi-notes
|
|
kcalendarcore
|
|
kcmutils
|
|
kcrash
|
|
kdbusaddons
|
|
kidentitymanagement
|
|
kldap
|
|
kmailtransport
|
|
knewstuff
|
|
knotifications
|
|
knotifyconfig
|
|
kparts
|
|
kross
|
|
ktexteditor
|
|
kuserfeedback
|
|
kwallet
|
|
libkdepim
|
|
libkleo
|
|
pimcommon
|
|
qttools
|
|
karchive
|
|
mailcommon
|
|
messagelib
|
|
];
|
|
}
|