summary refs log tree commit diff
path: root/pkgs/desktops/lxqt/optional/qps/default.nix
blob: a8ee18daf3c1be0a374820822a4482a4a1162a43 (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
{ stdenv, fetchFromGitHub, cmake, qt5 }:

stdenv.mkDerivation rec {
  name = "${pname}-${version}";
  pname = "qps";
  version = "1.10.18";

  src = fetchFromGitHub {
    owner = "lxqt";
    repo = pname;
    rev = version;
    sha256 = "1cq5z4w2n119z2bq0njn508g5582jljdx2n38cv5b3cf35k91a49";
  };

  nativeBuildInputs = [ cmake ];

  buildInputs = [ qt5.qtbase qt5.qtx11extras qt5.qttools ];

  meta = with stdenv.lib; {
    description = "The Qt process manager";
    homepage = https://github.com/lxqt/qps;
    license = licenses.gpl2;
    maintainers = with maintainers; [ romildo ];
    platforms = with platforms; unix;
  };
}