nixpkgs-suyu/pkgs/os-specific/linux/nmon/default.nix
R. RyanTM 00f08c6c64 nmon: 16j -> 16k
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
2019-07-01 19:27:34 -07:00

27 lines
737 B
Nix

{ fetchurl, stdenv, ncurses }:
stdenv.mkDerivation rec {
name = "nmon-${version}";
version = "16k";
src = fetchurl {
url = "mirror://sourceforge/nmon/lmon${version}.c";
sha256 = "17nbxrnl7kqiaaxn2hwyi65gphbl3wybbyp9vri2q5ifdis3ssib";
};
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 ];
};
}