2020-04-25 17:01:05 +00:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, lxqt-build-tools
|
|
|
|
, qtermwidget
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, qtx11extras
|
2020-04-26 14:53:59 +00:00
|
|
|
, lxqtUpdateScript
|
2020-11-13 18:54:56 +00:00
|
|
|
, nixosTests
|
2020-04-25 17:01:05 +00:00
|
|
|
}:
|
2016-10-03 22:07:26 +00:00
|
|
|
|
2019-07-27 21:05:17 +00:00
|
|
|
mkDerivation rec {
|
2016-10-03 22:07:26 +00:00
|
|
|
pname = "qterminal";
|
2022-04-16 19:16:31 +00:00
|
|
|
version = "1.1.0";
|
2016-10-03 22:07:26 +00:00
|
|
|
|
2017-11-02 02:07:15 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 01:24:38 +00:00
|
|
|
owner = "lxqt";
|
2016-10-03 22:07:26 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-04-16 19:16:31 +00:00
|
|
|
sha256 = "x+rgDrijDsMMdpU7afkn0dsSQbuBbEI9agoaLVsR/q8=";
|
2016-10-03 22:07:26 +00:00
|
|
|
};
|
|
|
|
|
2017-02-19 12:48:38 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2018-05-22 13:54:31 +00:00
|
|
|
lxqt-build-tools
|
2017-02-19 12:48:38 +00:00
|
|
|
];
|
2016-10-03 22:07:26 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
2019-02-05 23:14:41 +00:00
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
qtx11extras
|
2018-05-22 13:54:31 +00:00
|
|
|
qtermwidget
|
2016-10-03 22:07:26 +00:00
|
|
|
];
|
|
|
|
|
2020-04-26 14:53:59 +00:00
|
|
|
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
|
|
|
|
|
2020-11-13 18:54:56 +00:00
|
|
|
passthru.tests.test = nixosTests.terminal-emulators.qterminal;
|
|
|
|
|
2019-07-27 21:05:17 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/lxqt/qterminal";
|
2021-02-08 14:41:52 +00:00
|
|
|
description = "A lightweight Qt-based terminal emulator";
|
|
|
|
license = licenses.gpl2Plus;
|
2016-10-03 22:07:26 +00:00
|
|
|
platforms = with platforms; unix;
|
2022-04-14 13:52:15 +00:00
|
|
|
maintainers = with maintainers; [ globin ] ++ teams.lxqt.members;
|
2016-10-03 22:07:26 +00:00
|
|
|
};
|
|
|
|
}
|