nixpkgs/pkgs/desktops/lxqt/qps/default.nix

50 lines
886 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2020-04-26 13:25:25 -07:00
, kwindowsystem
, liblxqt
, libqtxdg
, lxqt-build-tools
, lxqtUpdateScript
2020-04-26 13:25:25 -07:00
, qtbase
, qttools
, qtx11extras
}:
2016-10-10 04:08:00 -07:00
mkDerivation rec {
2016-10-10 04:08:00 -07:00
pname = "qps";
2021-04-16 13:32:41 -07:00
version = "2.3.0";
2016-10-10 04:08:00 -07:00
2017-11-01 19:06:56 -07:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-10 04:08:00 -07:00
repo = pname;
2017-11-01 19:06:56 -07:00
rev = version;
2021-04-16 13:32:41 -07:00
sha256 = "0fihhnb7vp6x072spg1fnxaip4sq9mbvhrfqdwnzph5dlyvs54nj";
2016-10-10 04:08:00 -07:00
};
nativeBuildInputs = [
cmake
lxqt-build-tools
];
2016-10-10 04:08:00 -07:00
buildInputs = [
2020-04-26 13:25:25 -07:00
kwindowsystem
liblxqt
libqtxdg
qtbase
qttools
2020-04-26 13:25:25 -07:00
qtx11extras
];
2016-10-10 04:08:00 -07:00
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
homepage = "https://github.com/lxqt/qps";
description = "Qt based process manager";
license = licenses.gpl2Plus;
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
};
}