about summary refs log tree commit diff
path: root/pkgs/applications/maui/mauikit-texteditor.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/maui/mauikit-texteditor.nix')
-rw-r--r--pkgs/applications/maui/mauikit-texteditor.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/applications/maui/mauikit-texteditor.nix b/pkgs/applications/maui/mauikit-texteditor.nix
new file mode 100644
index 0000000000000..75826c2079ac0
--- /dev/null
+++ b/pkgs/applications/maui/mauikit-texteditor.nix
@@ -0,0 +1,32 @@
+{ lib
+, mkDerivation
+, cmake
+, extra-cmake-modules
+, kconfig
+, kio
+, mauikit
+, syntax-highlighting
+}:
+
+mkDerivation {
+  pname = "mauikit-texteditor";
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  buildInputs = [
+    kconfig
+    kio
+    mauikit
+    syntax-highlighting
+  ];
+
+  meta = with lib; {
+    homepage = "https://invent.kde.org/maui/mauikit-texteditor";
+    description = "MauiKit Text Editor components";
+    license = licenses.lgpl21Plus;
+    maintainers = with maintainers; [ onny ];
+  };
+}