mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
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
21 lines
441 B
Nix
21 lines
441 B
Nix
{
|
|
kdeApp, lib,
|
|
ecm,
|
|
kcompletion, kconfigwidgets, kdbusaddons, kdesignerplugin, kiconthemes,
|
|
kio,
|
|
boost, kitemmodels
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "akonadi";
|
|
meta = {
|
|
license = [ lib.licenses.lgpl21 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ ecm ];
|
|
buildInputs = [
|
|
kcompletion kconfigwidgets kdbusaddons kdesignerplugin kiconthemes kio
|
|
];
|
|
propagatedBuildInputs = [ boost kitemmodels ];
|
|
}
|