2020-04-25 18:01:05 +01:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, lxqt-build-tools
|
|
|
|
}:
|
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";
|
2019-02-26 21:32:28 +00:00
|
|
|
version = "0.14.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;
|
2019-02-26 21:32:28 +00:00
|
|
|
sha256 = "1pz8dwb86jpga4vfyn5v9n2s6dx3zh74yfp1kjsmsmhf878zs6lv";
|
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
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
meta = with lib; {
|
2016-10-03 23:03:17 +01:00
|
|
|
description = "A terminal emulator widget for Qt 5";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/lxqt/qtermwidget";
|
2016-10-03 23:03:17 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = with platforms; unix;
|
2017-02-19 12:21:45 +00:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-03 23:03:17 +01:00
|
|
|
};
|
|
|
|
}
|