nixpkgs/pkgs/desktops/kde-5/applications/akonadi-mime.nix
Thomas Tuegel 46b1cc4f75
kde5.applications: 16.08.3 -> 16.12.0
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
2016-12-18 08:33:22 -06:00

16 lines
319 B
Nix

{
kdeApp, lib,
ecm,
akonadi, kdbusaddons, kio, kitemmodels, kmime
}:
kdeApp {
name = "akonadi-mime";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ ecm ];
buildInputs = [ akonadi kdbusaddons kio kitemmodels kmime ];
}