2020-04-25 19:01:05 +02:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
2020-04-26 22:25:25 +02:00
|
|
|
, kwindowsystem
|
|
|
|
, liblxqt
|
|
|
|
, libqtxdg
|
2020-04-25 19:01:05 +02:00
|
|
|
, lxqt-build-tools
|
2022-09-27 23:32:15 +02:00
|
|
|
, gitUpdater
|
2020-04-26 22:25:25 +02:00
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, qtx11extras
|
2020-04-25 19:01:05 +02:00
|
|
|
}:
|
2016-10-10 13:08:00 +02:00
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
mkDerivation rec {
|
2016-10-10 13:08:00 +02:00
|
|
|
pname = "qps";
|
2023-11-05 21:23:51 +01:00
|
|
|
version = "2.8.0";
|
2016-10-10 13:08:00 +02:00
|
|
|
|
2017-11-02 03:06:56 +01:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 03:24:38 +02:00
|
|
|
owner = "lxqt";
|
2016-10-10 13:08:00 +02:00
|
|
|
repo = pname;
|
2017-11-02 03:06:56 +01:00
|
|
|
rev = version;
|
2023-11-05 21:23:51 +01:00
|
|
|
hash = "sha256-Xr+61t6LzoXASHuXrE5ro3eWGxMSDCVnck49dCtiaww=";
|
2016-10-10 13:08:00 +02:00
|
|
|
};
|
|
|
|
|
2020-04-25 19:01:05 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
lxqt-build-tools
|
2023-11-05 21:23:51 +01:00
|
|
|
qttools
|
2020-04-25 19:01:05 +02:00
|
|
|
];
|
2016-10-10 13:08:00 +02:00
|
|
|
|
2020-04-25 19:01:05 +02:00
|
|
|
buildInputs = [
|
2020-04-26 22:25:25 +02:00
|
|
|
kwindowsystem
|
|
|
|
liblxqt
|
|
|
|
libqtxdg
|
2020-04-25 19:01:05 +02:00
|
|
|
qtbase
|
2020-04-26 22:25:25 +02:00
|
|
|
qtx11extras
|
2020-04-25 19:01:05 +02:00
|
|
|
];
|
2016-10-10 13:08:00 +02:00
|
|
|
|
2022-09-27 23:32:15 +02:00
|
|
|
passthru.updateScript = gitUpdater { };
|
2020-04-26 16:53:59 +02:00
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/lxqt/qps";
|
2021-02-08 15:41:52 +01:00
|
|
|
description = "Qt based process manager";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "qps";
|
2021-02-08 15:41:52 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2020-04-25 19:01:05 +02:00
|
|
|
platforms = with platforms; linux; # does not build on darwin
|
2022-04-14 15:52:15 +02:00
|
|
|
maintainers = teams.lxqt.members;
|
2016-10-10 13:08:00 +02:00
|
|
|
};
|
|
|
|
}
|