nixpkgs/pkgs/os-specific/linux/nmon/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
893 B
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, ncurses }:
2018-03-30 12:19:08 +00:00
stdenv.mkDerivation rec {
pname = "nmon";
2021-11-18 09:34:15 +00:00
version = "16n";
2018-03-30 12:19:08 +00:00
src = fetchurl {
url = "mirror://sourceforge/nmon/lmon${version}.c";
2021-11-18 09:34:15 +00:00
sha256 = "1wpm2f30414b87kpbr9hbidblr5cmfby5skwqd0fkpi5v712q0f0";
2018-03-30 12:19:08 +00:00
};
buildInputs = [ ncurses ];
2019-06-19 15:45:34 +00:00
dontUnpack = true;
2021-10-19 19:11:38 +00: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;
2022-07-30 16:21:10 +00:00
if isx86 then "X86"
else if isAarch then "ARM"
2021-10-19 19:11:38 +00:00
else if isPower then "POWER"
else "UNKNOWN"
}";
2018-03-30 12:19:08 +00:00
installPhase = ''
mkdir -p $out/bin
cp nmon $out/bin
'';
meta = with lib; {
2018-03-30 12:19:08 +00:00
description = "AIX & Linux Performance Monitoring tool";
homepage = "https://nmon.sourceforge.net";
2018-03-30 12:19:08 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ sveitser ];
};
}