2020-04-25 10:01:05 -07:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
2020-04-26 13:25:25 -07:00
|
|
|
, kwindowsystem
|
|
|
|
, liblxqt
|
|
|
|
, libqtxdg
|
2020-04-25 10:01:05 -07:00
|
|
|
, lxqt-build-tools
|
2020-04-26 07:53:59 -07:00
|
|
|
, lxqtUpdateScript
|
2020-04-26 13:25:25 -07:00
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, qtx11extras
|
2020-04-25 10:01:05 -07:00
|
|
|
}:
|
2016-10-10 04:08:00 -07:00
|
|
|
|
2019-07-27 14:05:17 -07:00
|
|
|
mkDerivation rec {
|
2016-10-10 04:08:00 -07:00
|
|
|
pname = "qps";
|
2020-04-26 13:25:25 -07:00
|
|
|
version = "2.1.0";
|
2016-10-10 04:08:00 -07:00
|
|
|
|
2017-11-01 19:06:56 -07:00
|
|
|
src = fetchFromGitHub {
|
2018-05-21 18:24:38 -07:00
|
|
|
owner = "lxqt";
|
2016-10-10 04:08:00 -07:00
|
|
|
repo = pname;
|
2017-11-01 19:06:56 -07:00
|
|
|
rev = version;
|
2020-04-26 13:25:25 -07:00
|
|
|
sha256 = "0jg7sfhdm5xsahzcw8hc2vpp5p3sqzdqwp4my65nj85i7wzgxmva";
|
2016-10-10 04:08:00 -07:00
|
|
|
};
|
|
|
|
|
2020-04-25 10:01:05 -07:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
lxqt-build-tools
|
|
|
|
];
|
2016-10-10 04:08:00 -07:00
|
|
|
|
2020-04-25 10:01:05 -07:00
|
|
|
buildInputs = [
|
2020-04-26 13:25:25 -07:00
|
|
|
kwindowsystem
|
|
|
|
liblxqt
|
|
|
|
libqtxdg
|
2020-04-25 10:01:05 -07:00
|
|
|
qtbase
|
|
|
|
qttools
|
2020-04-26 13:25:25 -07:00
|
|
|
qtx11extras
|
2020-04-25 10:01:05 -07:00
|
|
|
];
|
2016-10-10 04:08:00 -07:00
|
|
|
|
2020-04-26 07:53:59 -07:00
|
|
|
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
|
|
|
|
|
2019-07-27 14:05:17 -07:00
|
|
|
meta = with lib; {
|
2019-10-14 19:41:28 -07:00
|
|
|
description = "Qt based process manager";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/lxqt/qps";
|
2016-10-10 04:08:00 -07:00
|
|
|
license = licenses.gpl2;
|
2020-04-25 10:01:05 -07:00
|
|
|
platforms = with platforms; linux; # does not build on darwin
|
2019-10-14 19:41:28 -07:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-10 04:08:00 -07:00
|
|
|
};
|
|
|
|
}
|