summary refs log tree commit diff
path: root/pkgs/applications/plasma-mobile/qmlkonsole.nix
diff options
context:
space:
mode:
authorAlexander Bantyev <balsoft@balsoft.ru>2023-02-13 19:09:35 +0400
committerAlexander Bantyev <balsoft@balsoft.ru>2023-02-15 09:41:55 +0400
commit551245d6c4636862f91ba4a0e94b8120b7e8d4d4 (patch)
treef8943ba88f4b5eda42ce802f651ba4a2f2b3e3ca /pkgs/applications/plasma-mobile/qmlkonsole.nix
parent9125ce608f5b94b8975cd22a6b85fecd59c984f2 (diff)
downloadnixpkgs-551245d6c4636862f91ba4a0e94b8120b7e8d4d4.tar
nixpkgs-551245d6c4636862f91ba4a0e94b8120b7e8d4d4.tar.gz
nixpkgs-551245d6c4636862f91ba4a0e94b8120b7e8d4d4.tar.bz2
nixpkgs-551245d6c4636862f91ba4a0e94b8120b7e8d4d4.tar.lz
nixpkgs-551245d6c4636862f91ba4a0e94b8120b7e8d4d4.tar.xz
nixpkgs-551245d6c4636862f91ba4a0e94b8120b7e8d4d4.tar.zst
nixpkgs-551245d6c4636862f91ba4a0e94b8120b7e8d4d4.zip
plasma-mobile/qmlkonsole: init at 23.01.0
Diffstat (limited to 'pkgs/applications/plasma-mobile/qmlkonsole.nix')
-rw-r--r--pkgs/applications/plasma-mobile/qmlkonsole.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/pkgs/applications/plasma-mobile/qmlkonsole.nix b/pkgs/applications/plasma-mobile/qmlkonsole.nix
new file mode 100644
index 00000000000..da892fb47c0
--- /dev/null
+++ b/pkgs/applications/plasma-mobile/qmlkonsole.nix
@@ -0,0 +1,42 @@
+{ lib
+, mkDerivation
+
+, cmake
+, extra-cmake-modules
+
+, kconfig
+, ki18n
+, kirigami-addons
+, kirigami2
+, kcoreaddons
+, qtquickcontrols2
+, kwindowsystem
+, qmltermwidget
+}:
+
+mkDerivation {
+  pname = "qmlkonsole";
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  buildInputs = [
+    kconfig
+    ki18n
+    kirigami-addons
+    kirigami2
+    qtquickcontrols2
+    kcoreaddons
+    kwindowsystem
+    qmltermwidget
+  ];
+
+  meta = with lib; {
+    description = "Terminal app for Plasma Mobile";
+    homepage = "https://invent.kde.org/plasma-mobile/qmlkonsole";
+    license = with licenses; [ gpl2Plus gpl3Plus cc0 ];
+    maintainers = with maintainers; [ balsoft ];
+  };
+}