2019-02-05 23:14:50 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, qtbase, qtx11extras, qttools,
|
|
|
|
lxqt-build-tools }:
|
2016-10-10 12:08:00 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "qps";
|
2019-02-26 21:32:32 +00:00
|
|
|
version = "1.10.20";
|
2016-10-10 12:08:00 +01:00
|
|
|
|
2017-11-02 02:06:56 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 02:24:38 +01:00
|
|
|
owner = "lxqt";
|
2016-10-10 12:08:00 +01:00
|
|
|
repo = pname;
|
2017-11-02 02:06:56 +00:00
|
|
|
rev = version;
|
2019-02-26 21:32:32 +00:00
|
|
|
sha256 = "1g8j4cjy5x33jzjkx6vwyl5qbf9i2z2w01ipgk7nrik5drf9crbf";
|
2016-10-10 12:08:00 +01:00
|
|
|
};
|
|
|
|
|
2019-02-05 23:14:50 +00:00
|
|
|
nativeBuildInputs = [ cmake lxqt-build-tools ];
|
2016-10-10 12:08:00 +01:00
|
|
|
|
2019-02-05 23:14:50 +00:00
|
|
|
buildInputs = [ qtbase qtx11extras qttools ];
|
2016-10-10 12:08:00 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "The Qt process manager";
|
2018-05-22 02:24:38 +01:00
|
|
|
homepage = https://github.com/lxqt/qps;
|
2016-10-10 12:08:00 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
platforms = with platforms; unix;
|
|
|
|
};
|
|
|
|
}
|