Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
949 B
Nix
44 lines
949 B
Nix
{
|
|
fetchurl,
|
|
lib,
|
|
stdenv,
|
|
ncurses,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nmon";
|
|
version = "16q";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/nmon/lmon${version}.c";
|
|
sha256 = "sha256-G3ioFnLBkpGz0RpuMZ3ZsjoCKiYtuh786gCNbfUaylE=";
|
|
};
|
|
|
|
buildInputs = [ ncurses ];
|
|
dontUnpack = true;
|
|
buildPhase = "${stdenv.cc.targetPrefix}cc -o nmon ${src} -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM -lncurses -lm -g -D ${
|
|
with stdenv.hostPlatform;
|
|
if isx86 then
|
|
"X86"
|
|
else if isAarch then
|
|
"ARM"
|
|
else if isPower then
|
|
"POWER"
|
|
else
|
|
"UNKNOWN"
|
|
}";
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp nmon $out/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "AIX & Linux Performance Monitoring tool";
|
|
mainProgram = "nmon";
|
|
homepage = "https://nmon.sourceforge.net";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ sveitser ];
|
|
};
|
|
}
|