46b1cc4f75
New packages: - akonadi - akonadi-contacts - akonadi-mime - kcontacts - kdegraphics-mobipocket - kmime Removed packages: - gpgmepp: now part of gpgme Notable changes: - kgpg: ported from Qt 4 and kdelibs to Qt 5 and Frameworks - okular: ported from Qt 4 and kdelibs to Qt 5 and Frameworks
20 lines
429 B
Nix
20 lines
429 B
Nix
{
|
|
kdeApp, lib,
|
|
ecm,
|
|
akonadi-mime, grantlee, kcontacts, kio, kitemmodels, kmime, qtwebengine,
|
|
akonadi
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "akonadi-contacts";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ ecm ];
|
|
buildInputs = [
|
|
akonadi-mime grantlee kcontacts kio kitemmodels kmime qtwebengine
|
|
];
|
|
propagatedBuildInputs = [ akonadi ];
|
|
}
|