about summary refs log tree commit diff
path: root/pkgs/applications/maui
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2022-12-12 16:46:53 +0100
committerRobert Schütz <github@dotlambda.de>2022-12-15 13:13:07 -0800
commit22450a3c2ee017eae9321439e32ba3af9a722328 (patch)
tree54ce9fc32303bea4626f2460a06a75ae87be3c63 /pkgs/applications/maui
parenta8df04c79009a9e00f263999a2b896c700dde7be (diff)
libsForQt5.station: init at 2.2.1
Diffstat (limited to 'pkgs/applications/maui')
-rw-r--r--pkgs/applications/maui/default.nix1
-rw-r--r--pkgs/applications/maui/station.nix36
2 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/applications/maui/default.nix b/pkgs/applications/maui/default.nix
index edb6837deaa35..3cd8b56015bbe 100644
--- a/pkgs/applications/maui/default.nix
+++ b/pkgs/applications/maui/default.nix
@@ -78,6 +78,7 @@ let
       nota = callPackage ./nota.nix { };
       pix = callPackage ./pix.nix { };
       shelf = callPackage ./shelf.nix { };
+      station = callPackage ./station.nix { };
       vvave = callPackage ./vvave.nix { };
     };
 
diff --git a/pkgs/applications/maui/station.nix b/pkgs/applications/maui/station.nix
new file mode 100644
index 0000000000000..49e8cae3f63d3
--- /dev/null
+++ b/pkgs/applications/maui/station.nix
@@ -0,0 +1,36 @@
+{ lib
+, mkDerivation
+, cmake
+, extra-cmake-modules
+, kcoreaddons
+, ki18n
+, kirigami2
+, mauikit
+, mauikit-filebrowsing
+, qmltermwidget
+}:
+
+mkDerivation {
+  pname = "station";
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  buildInputs = [
+    kcoreaddons
+    ki18n
+    kirigami2
+    mauikit
+    mauikit-filebrowsing
+    qmltermwidget
+  ];
+
+  meta = with lib; {
+    description = "Convergent terminal emulator";
+    homepage = "https://invent.kde.org/maui/station";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ onny ];
+  };
+}