37 lines
622 B
Nix
37 lines
622 B
Nix
{ lib
|
|
, mkDerivation
|
|
, cmake
|
|
, extra-cmake-modules
|
|
, mauikit
|
|
, qtquickcontrols2
|
|
, akonadi
|
|
, akonadi-contacts
|
|
, calendarsupport
|
|
, eventviews
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "mauikit-calendar";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
];
|
|
|
|
buildInputs = [
|
|
akonadi
|
|
akonadi-contacts
|
|
calendarsupport
|
|
eventviews
|
|
mauikit
|
|
qtquickcontrols2
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://invent.kde.org/maui/mauikit-calendar";
|
|
description = "Calendar support components for Maui applications";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ onny ];
|
|
};
|
|
}
|