about summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/maui-shell/default.nix87
1 files changed, 87 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/maui-shell/default.nix b/pkgs/applications/window-managers/maui-shell/default.nix
new file mode 100644
index 0000000000000..e1abf6676b50e
--- /dev/null
+++ b/pkgs/applications/window-managers/maui-shell/default.nix
@@ -0,0 +1,87 @@
+{ lib
+, pkgs
+, mkDerivation
+, fetchFromGitHub
+, qtquickcontrols2
+, cmake
+, extra-cmake-modules
+, kio
+, krunner
+, prison
+, knotifyconfig
+, kidletime
+, kpeople
+, kdesu
+, kactivities-stats
+, ktexteditor
+, kinit
+, kunitconversion
+, kitemmodels
+, phonon
+, polkit-qt
+, polkit
+, mauikit
+, mauikit-filebrowsing
+, bluedevil
+, plasma-nm
+, plasma-pa
+, bluez-qt
+, maui-core
+, cask-server
+, mauiman
+, mauikit-calendar
+, qtmultimedia
+}:
+
+mkDerivation rec {
+  pname = "maui-shell";
+  version = "0.5.6";
+
+  src = fetchFromGitHub {
+    owner = "Nitrux";
+    repo = pname;
+    rev = "refs/tags/v${version}";
+    sha256 = "sha256-lhTtIHE+FUgZFaPYoIRgLPrBUPISeXHCg3rn0FlQg7w=";
+  };
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  buildInputs = [
+    bluedevil
+    bluez-qt
+    cask-server
+    kactivities-stats
+    kdesu
+    kidletime
+    kinit
+    kitemmodels
+    knotifyconfig
+    krunner
+    kunitconversion
+    kpeople
+    ktexteditor
+    mauikit
+    mauikit-calendar
+    mauikit-filebrowsing
+    mauiman
+    maui-core
+    phonon
+    plasma-nm
+    plasma-pa
+    polkit
+    polkit-qt
+    prison
+    qtmultimedia
+    qtquickcontrols2
+  ];
+
+  meta = with lib; {
+    description = "A convergent shell for desktops, tablets, and phones";
+    homepage = "https://github.com/Nitrux/maui-shell";
+    license = licenses.lgpl3;
+    maintainers = with maintainers; [ onny ];
+  };
+}