summary refs log tree commit diff
path: root/pkgs/applications/maui/mauikit.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/maui/mauikit.nix')
-rw-r--r--pkgs/applications/maui/mauikit.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/applications/maui/mauikit.nix b/pkgs/applications/maui/mauikit.nix
new file mode 100644
index 00000000000..76f2f7db5d7
--- /dev/null
+++ b/pkgs/applications/maui/mauikit.nix
@@ -0,0 +1,37 @@
+{ lib
+, mkDerivation
+, cmake
+, extra-cmake-modules
+, kconfig
+, kcoreaddons
+, ki18n
+, knotifications
+, qtbase
+, qtquickcontrols2
+, qtx11extras
+}:
+
+mkDerivation {
+  pname = "mauikit";
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  buildInputs = [
+    kconfig
+    kcoreaddons
+    ki18n
+    knotifications
+    qtquickcontrols2
+    qtx11extras
+  ];
+
+  meta = with lib; {
+    homepage = "https://mauikit.org/";
+    description = "Free and modular front-end framework for developing fast and compelling user experiences";
+    license = licenses.gpl2Plus;
+    maintainers = with maintainers; [ dotlambda ];
+  };
+}