2022-07-11 10:27:09 +00:00
|
|
|
{ stdenv, buildPythonApplication, fetchFromGitHub, fetchpatch, isPyPy, lib
|
2021-11-22 19:43:15 +00:00
|
|
|
, defusedxml, future, packaging, psutil, setuptools
|
2019-07-18 09:56:31 +00:00
|
|
|
# Optional dependencies:
|
2020-07-06 09:11:33 +00:00
|
|
|
, bottle, pysnmp
|
2020-02-27 16:23:32 +00:00
|
|
|
, hddtemp
|
2019-07-18 09:56:31 +00:00
|
|
|
, netifaces # IP module
|
2020-07-06 09:12:51 +00:00
|
|
|
, py-cpuinfo
|
2018-09-29 09:36:59 +00:00
|
|
|
}:
|
|
|
|
|
2020-02-27 16:23:32 +00:00
|
|
|
buildPythonApplication rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "glances";
|
2022-07-31 10:34:58 +00:00
|
|
|
version = "3.2.7";
|
2018-09-29 09:36:59 +00:00
|
|
|
disabled = isPyPy;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nicolargo";
|
|
|
|
repo = "glances";
|
|
|
|
rev = "v${version}";
|
2022-07-31 10:34:58 +00:00
|
|
|
sha256 = "sha256-WZDvC95Y6Xc7dOuPJJlJLI4PCZR76pYPl8NGtmxe91o=";
|
2018-09-29 09:36:59 +00:00
|
|
|
};
|
|
|
|
|
2020-01-24 10:01:43 +00:00
|
|
|
# On Darwin this package segfaults due to mismatch of pure and impure
|
|
|
|
# CoreFoundation. This issues was solved for binaries but for interpreted
|
|
|
|
# scripts a workaround below is still required.
|
|
|
|
# Relevant: https://github.com/NixOS/nixpkgs/issues/24693
|
|
|
|
makeWrapperArgs = lib.optionals stdenv.isDarwin [
|
|
|
|
"--set" "DYLD_FRAMEWORK_PATH" "/System/Library/Frameworks"
|
|
|
|
];
|
2018-09-29 09:59:48 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
2021-08-18 00:14:20 +00:00
|
|
|
preCheck = lib.optionalString stdenv.isDarwin ''
|
2020-01-24 10:01:43 +00:00
|
|
|
export DYLD_FRAMEWORK_PATH=/System/Library/Frameworks
|
|
|
|
'';
|
2018-09-29 09:36:59 +00:00
|
|
|
|
2020-02-27 16:23:32 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
bottle
|
2021-07-10 09:42:39 +00:00
|
|
|
defusedxml
|
2020-02-27 16:23:32 +00:00
|
|
|
future
|
2019-07-18 09:56:31 +00:00
|
|
|
netifaces
|
2021-11-22 19:43:15 +00:00
|
|
|
packaging
|
2020-02-27 16:23:32 +00:00
|
|
|
psutil
|
|
|
|
pysnmp
|
|
|
|
setuptools
|
2020-07-06 09:12:51 +00:00
|
|
|
py-cpuinfo
|
2020-01-24 10:01:43 +00:00
|
|
|
] ++ lib.optional stdenv.isLinux hddtemp;
|
2018-09-29 09:36:59 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2020-02-27 16:23:32 +00:00
|
|
|
homepage = "https://nicolargo.github.io/glances/";
|
2018-09-29 09:36:59 +00:00
|
|
|
description = "Cross-platform curses-based monitoring tool";
|
2021-07-03 09:40:51 +00:00
|
|
|
changelog = "https://github.com/nicolargo/glances/blob/v${version}/NEWS.rst";
|
2021-05-02 17:06:59 +00:00
|
|
|
license = licenses.lgpl3Only;
|
2020-02-27 16:23:32 +00:00
|
|
|
maintainers = with maintainers; [ jonringer primeos koral ];
|
2018-09-29 09:36:59 +00:00
|
|
|
};
|
|
|
|
}
|