1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Adding Glances system monitoring tool

This commit is contained in:
Michael Raskin 2013-10-18 11:11:47 +04:00
parent ef00dc20e6
commit fb2cb7bc0f
2 changed files with 30 additions and 0 deletions

View file

@ -164,6 +164,11 @@ let
deps = [ ncurses ];
};
curses_panel = buildInternalPythonModule {
moduleName = "curses_panel";
deps = [ ncurses modules.curses ];
};
crypt = buildInternalPythonModule {
moduleName = "crypt";
internalName = "crypt";

View file

@ -2668,6 +2668,31 @@ pythonPackages = modules // import ./python-packages-generated.nix {
};
};
glances = buildPythonPackage rec {
name = "glances-${meta.version}";
src = fetchurl {
url = "https://github.com/nicolargo/glances/archive/v${meta.version}.tar.gz";
sha256 = "0g2yg9qf7qgjwv13x0rx51rzhn99pcmjpb3vk0g3gmmdsqyqi0d6";
};
buildInputs = [ pkgs.hddtemp ];
propagatedBuildInputs = [ psutil jinja2 modules.curses modules.curses_panel];
doCheck = false;
preConfigure = ''
sed -i -r -e '/data_files.append[(][(](conf|etc)_path/ietc_path="etc/glances"; conf_path="etc/glances"' setup.py;
'';
meta = {
version = "1.7.1";
homepage = "http://nicolargo.github.io/glances/";
description = "Cross-platform curses-based monitoring tool";
};
};
greenlet = buildPythonPackage rec {
name = "greenlet-0.3.1";