about summary refs log tree commit diff
path: root/pkgs/applications/maui/mauikit-calendar.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/maui/mauikit-calendar.nix')
-rw-r--r--pkgs/applications/maui/mauikit-calendar.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/applications/maui/mauikit-calendar.nix b/pkgs/applications/maui/mauikit-calendar.nix
new file mode 100644
index 0000000000000..508319f1616d4
--- /dev/null
+++ b/pkgs/applications/maui/mauikit-calendar.nix
@@ -0,0 +1,36 @@
+{ 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 ];
+  };
+}