summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 edb6837deaa3..3cd8b56015bb 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 000000000000..49e8cae3f63d
--- /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 ];
+ };
+}