2021-10-27 16:31:39 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2019-12-18 21:50:19 +01:00
|
|
|
, fetchFromGitHub
|
2020-07-29 18:33:39 +02:00
|
|
|
, nix-update-script
|
2019-12-18 21:50:19 +01:00
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, vala
|
|
|
|
, pkg-config
|
|
|
|
, pantheon
|
|
|
|
, python3
|
|
|
|
, gettext
|
|
|
|
, glib
|
|
|
|
, gtk3
|
2021-06-23 20:22:04 +02:00
|
|
|
, libwnck
|
2019-12-18 21:50:19 +01:00
|
|
|
, libgee
|
|
|
|
, libgtop
|
2021-10-27 16:31:39 +02:00
|
|
|
, libhandy
|
|
|
|
, sassc
|
|
|
|
, udisks2
|
2019-12-18 21:50:19 +01:00
|
|
|
, wrapGAppsHook
|
2022-01-17 10:59:15 +01:00
|
|
|
, libX11
|
|
|
|
, libXext
|
|
|
|
, libXNVCtrl
|
2019-12-18 21:50:19 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "monitor";
|
2022-01-17 10:59:15 +01:00
|
|
|
version = "0.12.0";
|
2019-12-18 21:50:19 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "stsdc";
|
|
|
|
repo = "monitor";
|
|
|
|
rev = version;
|
2022-01-17 10:59:15 +01:00
|
|
|
sha256 = "1fv98yz9393ddp0k96bwbgccy6x9dmmg8g1pjd3xs6m4c1bnvfc7";
|
2020-04-16 07:01:10 +02:00
|
|
|
fetchSubmodules = true;
|
2019-12-18 21:50:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
gettext
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
vala
|
|
|
|
pkg-config
|
|
|
|
python3
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
pantheon.granite
|
|
|
|
pantheon.wingpanel
|
|
|
|
libgee
|
|
|
|
libgtop
|
2021-10-27 16:31:39 +02:00
|
|
|
libhandy
|
2021-06-23 20:22:04 +02:00
|
|
|
libwnck
|
2021-10-27 16:31:39 +02:00
|
|
|
sassc
|
|
|
|
udisks2
|
2022-01-17 10:59:15 +01:00
|
|
|
libX11
|
|
|
|
libXext
|
|
|
|
libXNVCtrl
|
2019-12-18 21:50:19 +01:00
|
|
|
];
|
|
|
|
|
2022-01-17 10:59:15 +01:00
|
|
|
# Force link against Xext, otherwise build fails with:
|
|
|
|
# ld: /nix/store/...-libXNVCtrl-495.46/lib/libXNVCtrl.a(NVCtrl.o): undefined reference to symbol 'XextAddDisplay'
|
|
|
|
# ld: /nix/store/...-libXext-1.3.4/lib/libXext.so.6: error adding symbols: DSO missing from command line
|
|
|
|
# https://github.com/stsdc/monitor/issues/292
|
|
|
|
NIX_LDFLAGS = "-lXext";
|
|
|
|
|
|
|
|
mesonFlags = [ "-Dindicator-wingpanel=enabled" ];
|
|
|
|
|
2019-12-18 21:50:19 +01:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson/post_install.py
|
|
|
|
patchShebangs meson/post_install.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
2020-07-29 18:33:39 +02:00
|
|
|
updateScript = nix-update-script {
|
2019-12-18 21:50:19 +01:00
|
|
|
attrPath = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-12-18 21:50:19 +01:00
|
|
|
description = "Manage processes and monitor system resources";
|
2020-04-16 07:02:21 +02:00
|
|
|
longDescription = ''
|
|
|
|
Manage processes and monitor system resources.
|
|
|
|
To use the wingpanel indicator in this application, see the Pantheon
|
|
|
|
section in the NixOS manual.
|
|
|
|
'';
|
2019-12-18 21:50:19 +01:00
|
|
|
homepage = "https://github.com/stsdc/monitor";
|
2021-09-18 17:00:51 +02:00
|
|
|
maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members;
|
2019-12-18 21:50:19 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
2021-10-27 16:31:39 +02:00
|
|
|
mainProgram = "com.github.stsdc.monitor";
|
2019-12-18 21:50:19 +01:00
|
|
|
};
|
|
|
|
}
|