summary refs log tree commit diff
path: root/pkgs/desktops/lxqt/qps/default.nix
blob: cb8e5b2569c54633b549a0a8411c8aa28a62defa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, mkDerivation, fetchFromGitHub, cmake, qtbase, qtx11extras, qttools,
  lxqt-build-tools }:

mkDerivation rec {
  pname = "qps";
  version = "2.0.0";

  src = fetchFromGitHub {
    owner = "lxqt";
    repo = pname;
    rev = version;
    sha256 = "03rl59yk3b24j0y0k8dpdpb3yi4f1l642zn5pp5br3s2vwx1vzkg";
  };

  nativeBuildInputs = [ cmake lxqt-build-tools ];

  buildInputs = [ qtbase qtx11extras qttools ];

  meta = with lib; {
    description = "Qt based process manager";
    homepage = https://github.com/lxqt/qps;
    license = licenses.gpl2;
    platforms = with platforms; linux;  # does not build on darwin
    maintainers = with maintainers; [ romildo ];
  };
}