2020-04-25 19:01:05 +02:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, lxqt-build-tools
|
2020-04-26 16:53:59 +02:00
|
|
|
, lxqtUpdateScript
|
2020-04-25 19:01:05 +02:00
|
|
|
}:
|
2016-10-04 00:03:17 +02:00
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
mkDerivation rec {
|
2016-10-04 00:03:17 +02:00
|
|
|
pname = "qtermwidget";
|
2022-04-16 21:16:32 +02:00
|
|
|
version = "1.1.0";
|
2016-10-04 00:03:17 +02:00
|
|
|
|
2017-11-02 03:01:22 +01:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 03:24:38 +02:00
|
|
|
owner = "lxqt";
|
2016-10-04 00:03:17 +02:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-04-16 21:16:32 +02:00
|
|
|
sha256 = "tb1Vlkv8HsNlFCFOYfPnJlhdJmhyDmLE9SaTXZT0gGs=";
|
2016-10-04 00:03:17 +02:00
|
|
|
};
|
|
|
|
|
2020-04-25 19:01:05 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
lxqt-build-tools
|
|
|
|
];
|
2016-10-04 00:03:17 +02:00
|
|
|
|
2020-04-25 19:01:05 +02:00
|
|
|
buildInputs = [
|
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
];
|
2016-10-04 00:03:17 +02:00
|
|
|
|
2020-04-26 16:53:59 +02:00
|
|
|
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
|
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/lxqt/qtermwidget";
|
2021-02-08 15:41:52 +01:00
|
|
|
description = "A terminal emulator widget for Qt 5";
|
|
|
|
license = licenses.gpl2Plus;
|
2016-10-04 00:03:17 +02:00
|
|
|
platforms = with platforms; unix;
|
2017-02-19 13:21:45 +01:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-04 00:03:17 +02:00
|
|
|
};
|
|
|
|
}
|