nixpkgs/pkgs/applications/system/glances/default.nix

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

55 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, buildPythonApplication, fetchFromGitHub, fetchpatch, isPyPy, lib
2021-11-22 19:43:15 +00:00
, defusedxml, future, packaging, psutil, setuptools
# Optional dependencies:
, bottle, pysnmp
, hddtemp
, netifaces # IP module
, py-cpuinfo
2018-09-29 09:36:59 +00:00
}:
buildPythonApplication rec {
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
};
# 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"
];
doCheck = true;
preCheck = lib.optionalString stdenv.isDarwin ''
export DYLD_FRAMEWORK_PATH=/System/Library/Frameworks
'';
2018-09-29 09:36:59 +00:00
propagatedBuildInputs = [
bottle
2021-07-10 09:42:39 +00:00
defusedxml
future
netifaces
2021-11-22 19:43:15 +00:00
packaging
psutil
pysnmp
setuptools
py-cpuinfo
] ++ lib.optional stdenv.isLinux hddtemp;
2018-09-29 09:36:59 +00:00
meta = with lib; {
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;
maintainers = with maintainers; [ jonringer primeos koral ];
2018-09-29 09:36:59 +00:00
};
}