2020-04-25 18:01:05 +01:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, lxqt-build-tools
|
|
|
|
, qtermwidget
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, qtx11extras
|
2020-04-26 15:53:59 +01:00
|
|
|
, lxqtUpdateScript
|
2020-04-25 18:01:05 +01:00
|
|
|
}:
|
2016-10-03 23:07:26 +01:00
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
mkDerivation rec {
|
2016-10-03 23:07:26 +01:00
|
|
|
pname = "qterminal";
|
2020-12-15 22:40:44 +00:00
|
|
|
version = "0.16.1";
|
2016-10-03 23:07:26 +01:00
|
|
|
|
2017-11-02 02:07:15 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 02:24:38 +01:00
|
|
|
owner = "lxqt";
|
2016-10-03 23:07:26 +01:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-12-15 22:40:44 +00:00
|
|
|
sha256 = "0l1jhkyx7ihv3nvqm1gfvzhrhl4l8yvqxly0c9zgl6mzrd39cj3d";
|
2016-10-03 23:07:26 +01:00
|
|
|
};
|
|
|
|
|
2017-02-19 12:48:38 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2018-05-22 14:54:31 +01:00
|
|
|
lxqt-build-tools
|
2017-02-19 12:48:38 +00:00
|
|
|
];
|
2016-10-03 23:07:26 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
2019-02-05 23:14:41 +00:00
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
qtx11extras
|
2018-05-22 14:54:31 +01:00
|
|
|
qtermwidget
|
2016-10-03 23:07:26 +01:00
|
|
|
];
|
|
|
|
|
2020-04-26 15:53:59 +01:00
|
|
|
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
|
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
meta = with lib; {
|
2016-10-03 23:07:26 +01:00
|
|
|
description = "A lightweight Qt-based terminal emulator";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/lxqt/qterminal";
|
2016-10-03 23:07:26 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = with platforms; unix;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ romildo globin ];
|
2016-10-03 23:07:26 +01:00
|
|
|
};
|
|
|
|
}
|