16a0e7d3f0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/nmon/versions
28 lines
727 B
Nix
28 lines
727 B
Nix
{ fetchurl, stdenv, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nmon";
|
|
version = "16m";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/nmon/lmon${version}.c";
|
|
sha256 = "1hazgrq3m01dzv05639yis1mypcp0jf167n9gqwd3wgxzm2lvv9b";
|
|
};
|
|
|
|
buildInputs = [ ncurses ];
|
|
dontUnpack = true;
|
|
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 ];
|
|
};
|
|
}
|