nmon: init at 16g
This commit is contained in:
parent
f07348890d
commit
25b3d27257
|
@ -3421,6 +3421,11 @@
|
|||
github = "suvash";
|
||||
name = "Suvash Thapaliya";
|
||||
};
|
||||
sveitser = {
|
||||
email = "sveitser@gmail.com";
|
||||
github = "sveitser";
|
||||
name = "Mathis Antony";
|
||||
};
|
||||
svsdep = {
|
||||
email = "svsdep@gmail.com";
|
||||
github = "svsdep";
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
{ fetchurl, stdenv, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "nmon-${version}";
|
||||
version = "16g";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/nmon/lmon${version}.c";
|
||||
sha256 = "127n8xvmg7byp42sm924mdr7hd3bsfsxpryzahl0cfsh7dlxv0ns";
|
||||
};
|
||||
|
||||
buildInputs = [ ncurses ];
|
||||
unpackPhase = ":";
|
||||
buildPhase = "cc -o nmon ${src} -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM -lncurses -lm -g -D X86";
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp nmon $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "AIX & Linux Performance Monitoring tool";
|
||||
homepage = "http://nmon.sourceforge.net";
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ sveitser ];
|
||||
};
|
||||
}
|
|
@ -13203,6 +13203,8 @@ with pkgs;
|
|||
inherit (darwin) IOKit;
|
||||
};
|
||||
|
||||
nmon = callPackage ../os-specific/linux/nmon { };
|
||||
|
||||
# GNU/Hurd core packages.
|
||||
gnu = recurseIntoAttrs (callPackage ../os-specific/gnu {
|
||||
inherit platform;
|
||||
|
|
Loading…
Reference in New Issue