Atop: add package (atop is one more load monitor)

wip/yesman
Michael Raskin 12 years ago
parent ca3f140e9b
commit 2ab1594512
  1. 39
      pkgs/os-specific/linux/atop/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,39 @@
{stdenv, fetchurl, zlib, ncurses}:
stdenv.mkDerivation rec {
version = "1.27-3";
name = "atop-${version}";
src = fetchurl {
url = "http://www.atoptool.nl/download/atop-${version}.tar.gz";
sha256 = "bce36e0b50f0e03995d86d25dbc9ab4a289f6755ce3558844f96d41b0bba563f";
};
buildInputs = [zlib ncurses];
makeFlags = [
''SCRPATH=$out/etc/atop''
''LOGPATH=/var/log/atop''
''INIPATH=$out/etc/rc.d/init.d''
''CRNPATH=$out/etc/cron.d''
''ROTPATH=$out/etc/logrotate.d''
];
preConfigure = ''
sed -e "s@/usr/@$out/@g" -i $(find . -type f )
sed -e "/mkdir.*LOGPATH/s@mkdir@echo missing dir @" -i Makefile
sed -e "/touch.*LOGPATH/s@touch@echo should have created @" -i Makefile
sed -e 's/chown/true/g' -i Makefile
sed -e '/chkconfig/d' -i Makefile
'';
meta = {
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [raskin];
description = ''Console system performance monitor'';
longDescription = ''
Atop is an ASCII full-screen performance monitor that is capable of reporting the activity of all processes (even if processes have finished during the interval), daily logging of system and process activity for long-term analysis, highlighting overloaded system resources by using colors, etc. At regular intervals, it shows system-level activity related to the CPU, memory, swap, disks and network layers, and for every active process it shows the CPU utilization, memory growth, disk utilization, priority, username, state, and exit code.
'';
};
}

@ -5475,6 +5475,8 @@ let
inherit (perlPackages) LocaleGettext TermReadKey RpcXML;
};
atop = callPackage ../os-specific/linux/atop { };
b43Firmware_5_1_138 = callPackage ../os-specific/linux/firmware/b43-firmware/5.1.138.nix { };
b43FirmwareCutter = callPackage ../os-specific/linux/firmware/b43-firmware-cutter { };

Loading…
Cancel
Save