1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 09:03:48 +00:00
nixpkgs/pkgs/os-specific/linux/nmon/default.nix

34 lines
922 B
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, ncurses }:
2018-03-30 13:19:08 +01:00
stdenv.mkDerivation rec {
pname = "nmon";
version = "16m";
2018-03-30 13:19:08 +01:00
src = fetchurl {
url = "mirror://sourceforge/nmon/lmon${version}.c";
sha256 = "1hazgrq3m01dzv05639yis1mypcp0jf167n9gqwd3wgxzm2lvv9b";
2018-03-30 13:19:08 +01:00
};
buildInputs = [ ncurses ];
2019-06-19 16:45:34 +01:00
dontUnpack = true;
2021-10-19 20:11:38 +01:00
buildPhase = "${stdenv.cc.targetPrefix}cc -o nmon ${src} -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM -lncurses -lm -g -D ${
with stdenv.targetPlatform;
if isx86_32 || isx86_64 then "X86"
else if isAarch32 || isAarch64 then "ARM"
else if isPower then "POWER"
else "UNKNOWN"
}";
2018-03-30 13:19:08 +01:00
installPhase = ''
mkdir -p $out/bin
cp nmon $out/bin
'';
meta = with lib; {
2018-03-30 13:19:08 +01:00
description = "AIX & Linux Performance Monitoring tool";
homepage = "http://nmon.sourceforge.net";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ sveitser ];
};
}