1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/os-specific/linux/nmon/default.nix
R. RyanTM 1dcc1f250b nmon: 16g -> 16h
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-01-07 13:48:55 -08:00

28 lines
737 B
Nix

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