about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/lxqt/qterminal/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/desktops/lxqt/qterminal/default.nix')
-rw-r--r--nixpkgs/pkgs/desktops/lxqt/qterminal/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/desktops/lxqt/qterminal/default.nix b/nixpkgs/pkgs/desktops/lxqt/qterminal/default.nix
new file mode 100644
index 000000000000..720f3ad7e8e4
--- /dev/null
+++ b/nixpkgs/pkgs/desktops/lxqt/qterminal/default.nix
@@ -0,0 +1,51 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, lxqt-build-tools
+, qtbase
+, qtermwidget
+, qttools
+, qtx11extras
+, wrapQtAppsHook
+, gitUpdater
+, nixosTests
+}:
+
+stdenv.mkDerivation rec {
+  pname = "qterminal";
+  version = "1.4.0";
+
+  src = fetchFromGitHub {
+    owner = "lxqt";
+    repo = pname;
+    rev = version;
+    hash = "sha256-nojNx351lYw0jVKEvzAIDP1WrZWcCAlfYMxNG95GcEo=";
+  };
+
+  nativeBuildInputs = [
+    cmake
+    lxqt-build-tools
+    qttools
+    wrapQtAppsHook
+  ];
+
+  buildInputs = [
+    qtbase
+    qtermwidget
+    qtx11extras
+  ];
+
+  passthru.updateScript = gitUpdater { };
+
+  passthru.tests.test = nixosTests.terminal-emulators.qterminal;
+
+  meta = with lib; {
+    homepage = "https://github.com/lxqt/qterminal";
+    description = "A lightweight Qt-based terminal emulator";
+    mainProgram = "qterminal";
+    license = licenses.gpl2Plus;
+    platforms = with platforms; unix;
+    maintainers = with maintainers; teams.lxqt.members;
+  };
+}