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
907 B
Nix
Raw Normal View History

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