eb774f3047
This is required for kdepim-addons and packaging this is pretty much straightforward with no hurdles. I tried to keep the coding style close to other packages in kdeApplications so that it stays consistent. Signed-off-by: aszlig <aszlig@nix.build> Cc: @ttuegel, @vandenoever
21 lines
597 B
Nix
21 lines
597 B
Nix
{
|
|
mkDerivation, lib, kdepimTeam,
|
|
extra-cmake-modules, kdoctools,
|
|
akonadi, karchive, kcontacts, kcrash, kidentitymanagement, kio,
|
|
kmailtransport, kwallet, mailcommon, mailimporter, messagelib
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "akonadi-import-wizard";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12 ];
|
|
maintainers = kdepimTeam;
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
akonadi karchive kcontacts kcrash kidentitymanagement kio
|
|
kmailtransport kwallet mailcommon mailimporter messagelib
|
|
];
|
|
outputs = [ "out" "dev" ];
|
|
}
|