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

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

55 lines
909 B
Nix
Raw Normal View History

{ lib
2024-04-18 17:21:42 +00:00
, stdenv
, fetchFromGitHub
, cmake
2020-04-26 20:25:25 +00:00
, kwindowsystem
, liblxqt
, libqtxdg
, lxqt-build-tools
2020-04-26 20:25:25 +00:00
, qtbase
2024-04-18 17:21:42 +00:00
, qtsvg
2020-04-26 20:25:25 +00:00
, qttools
2024-04-18 17:21:42 +00:00
, qtwayland
, wrapQtAppsHook
, gitUpdater
}:
2016-10-10 11:08:00 +00:00
2024-04-18 17:21:42 +00:00
stdenv.mkDerivation rec {
2016-10-10 11:08:00 +00:00
pname = "qps";
2024-04-18 17:21:42 +00:00
version = "2.9.0";
2016-10-10 11:08:00 +00:00
2017-11-02 02:06:56 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-10 11:08:00 +00:00
repo = pname;
2017-11-02 02:06:56 +00:00
rev = version;
2024-04-18 17:21:42 +00:00
hash = "sha256-Jit1CdFZyhKOjNytTBH9T4NqqmhxoifXGgPUyVdzJ+4=";
2016-10-10 11:08:00 +00:00
};
nativeBuildInputs = [
cmake
lxqt-build-tools
2023-11-05 20:23:51 +00:00
qttools
2024-04-18 17:21:42 +00:00
wrapQtAppsHook
];
2016-10-10 11:08:00 +00:00
buildInputs = [
2020-04-26 20:25:25 +00:00
kwindowsystem
liblxqt
libqtxdg
qtbase
2024-04-18 17:21:42 +00:00
qtsvg
qtwayland
];
2016-10-10 11:08:00 +00: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 13:52:15 +00:00
maintainers = teams.lxqt.members;
2016-10-10 11:08:00 +00:00
};
}