2020-04-25 18:01:05 +01:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, lxqt-build-tools
|
2020-04-26 15:53:59 +01:00
|
|
|
, lxqtUpdateScript
|
2020-04-25 18:01:05 +01:00
|
|
|
}:
|
2016-10-03 23:03:17 +01:00
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
mkDerivation rec {
|
2016-10-03 23:03:17 +01:00
|
|
|
pname = "qtermwidget";
|
2020-12-15 22:40:44 +00:00
|
|
|
version = "0.16.1";
|
2016-10-03 23:03:17 +01:00
|
|
|
|
2017-11-02 02:01:22 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 02:24:38 +01:00
|
|
|
owner = "lxqt";
|
2016-10-03 23:03:17 +01:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-12-15 22:40:44 +00:00
|
|
|
sha256 = "0kpg4b60h6dads8ncwlk0zj1c8y7xpb0kz28j0v9fqjbmxja7x6w";
|
2016-10-03 23:03:17 +01:00
|
|
|
};
|
|
|
|
|
2020-04-25 18:01:05 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
lxqt-build-tools
|
|
|
|
];
|
2016-10-03 23:03:17 +01:00
|
|
|
|
2020-04-25 18:01:05 +01:00
|
|
|
buildInputs = [
|
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
];
|
2016-10-03 23:03:17 +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; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/lxqt/qtermwidget";
|
2021-02-08 14:41:52 +00:00
|
|
|
description = "A terminal emulator widget for Qt 5";
|
|
|
|
license = licenses.gpl2Plus;
|
2016-10-03 23:03:17 +01:00
|
|
|
platforms = with platforms; unix;
|
2017-02-19 12:21:45 +00:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-03 23:03:17 +01:00
|
|
|
};
|
|
|
|
}
|