about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/maui/mauiman.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/maui/mauiman.nix')
-rw-r--r--nixpkgs/pkgs/applications/maui/mauiman.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/maui/mauiman.nix b/nixpkgs/pkgs/applications/maui/mauiman.nix
new file mode 100644
index 000000000000..7566c7d6ed7d
--- /dev/null
+++ b/nixpkgs/pkgs/applications/maui/mauiman.nix
@@ -0,0 +1,26 @@
+{ lib
+, mkDerivation
+, cmake
+, extra-cmake-modules
+, qtsystems
+}:
+
+mkDerivation {
+  pname = "mauiman";
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  buildInputs = [
+    qtsystems
+  ];
+
+  meta = with lib; {
+    homepage = "https://invent.kde.org/maui/mauiman";
+    description = "Maui Manager Library. Server and public library API";
+    mainProgram = "MauiManServer3";
+    maintainers = with maintainers; [ dotlambda ];
+  };
+}