mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
20 lines
473 B
Nix
20 lines
473 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
akonadi-mime, grantlee, kcontacts, kio, kitemmodels, kmime, qtwebengine,
|
|
akonadi
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "akonadi-contacts";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
akonadi-mime grantlee kcontacts kio kitemmodels kmime qtwebengine
|
|
];
|
|
propagatedBuildInputs = [ akonadi ];
|
|
}
|