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

50 lines
882 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2020-04-26 22:25:25 +02:00
, kwindowsystem
, liblxqt
, libqtxdg
, lxqt-build-tools
, lxqtUpdateScript
2020-04-26 22:25:25 +02:00
, qtbase
, qttools
, qtx11extras
}:
2016-10-10 13:08:00 +02:00
mkDerivation rec {
2016-10-10 13:08:00 +02:00
pname = "qps";
2020-12-15 23:40:44 +01:00
version = "2.2.0";
2016-10-10 13:08:00 +02:00
2017-11-02 03:06:56 +01:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-10 13:08:00 +02:00
repo = pname;
2017-11-02 03:06:56 +01:00
rev = version;
2020-12-15 23:40:44 +01:00
sha256 = "0gfw7iz7jzyfl9hiq3aivbgkkl61fz319cfg57fgn2kldlcljhwa";
2016-10-10 13:08:00 +02:00
};
nativeBuildInputs = [
cmake
lxqt-build-tools
];
2016-10-10 13:08:00 +02:00
buildInputs = [
2020-04-26 22:25:25 +02:00
kwindowsystem
liblxqt
libqtxdg
qtbase
qttools
2020-04-26 22:25:25 +02:00
qtx11extras
];
2016-10-10 13:08:00 +02:00
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
2019-10-15 04:41:28 +02:00
description = "Qt based process manager";
homepage = "https://github.com/lxqt/qps";
2016-10-10 13:08:00 +02:00
license = licenses.gpl2;
platforms = with platforms; linux; # does not build on darwin
2019-10-15 04:41:28 +02:00
maintainers = with maintainers; [ romildo ];
2016-10-10 13:08:00 +02:00
};
}