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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
858 B
Nix
Raw Permalink Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2020-04-26 22:25:25 +02:00
, kwindowsystem
, liblxqt
, libqtxdg
, lxqt-build-tools
, gitUpdater
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";
2023-11-05 21:23:51 +01:00
version = "2.8.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;
2023-11-05 21:23:51 +01:00
hash = "sha256-Xr+61t6LzoXASHuXrE5ro3eWGxMSDCVnck49dCtiaww=";
2016-10-10 13:08:00 +02:00
};
nativeBuildInputs = [
cmake
lxqt-build-tools
2023-11-05 21:23:51 +01:00
qttools
];
2016-10-10 13:08:00 +02:00
buildInputs = [
2020-04-26 22:25:25 +02:00
kwindowsystem
liblxqt
libqtxdg
qtbase
2020-04-26 22:25:25 +02:00
qtx11extras
];
2016-10-10 13:08:00 +02:00
passthru.updateScript = gitUpdater { };
meta = with lib; {
homepage = "https://github.com/lxqt/qps";
description = "Qt based process manager";
mainProgram = "qps";
license = licenses.gpl2Plus;
platforms = with platforms; linux; # does not build on darwin
2022-04-14 15:52:15 +02:00
maintainers = teams.lxqt.members;
2016-10-10 13:08:00 +02:00
};
}