summary refs log tree commit diff
path: root/pkgs/applications/maui/mauikit-filebrowsing.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/maui/mauikit-filebrowsing.nix')
-rw-r--r--pkgs/applications/maui/mauikit-filebrowsing.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/applications/maui/mauikit-filebrowsing.nix b/pkgs/applications/maui/mauikit-filebrowsing.nix
new file mode 100644
index 00000000000..d8be881f764
--- /dev/null
+++ b/pkgs/applications/maui/mauikit-filebrowsing.nix
@@ -0,0 +1,30 @@
+{ lib
+, mkDerivation
+, cmake
+, extra-cmake-modules
+, kconfig
+, kio
+, mauikit
+}:
+
+mkDerivation {
+  pname = "mauikit-filebrowsing";
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  buildInputs = [
+    kconfig
+    kio
+    mauikit
+  ];
+
+  meta = with lib; {
+    homepage = "https://invent.kde.org/maui/mauikit-filebrowsing";
+    description = "MauiKit File Browsing utilities and controls";
+    license = licenses.lgpl21Plus;
+    maintainers = with maintainers; [ dotlambda ];
+  };
+}