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.

35 lines
916 B
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, ncurses }:
2018-03-30 15:19:08 +03:00
stdenv.mkDerivation rec {
pname = "nmon";
2023-09-01 12:41:39 +03:00
version = "16p";
2018-03-30 15:19:08 +03:00
src = fetchurl {
url = "mirror://sourceforge/nmon/lmon${version}.c";
2023-09-01 12:41:39 +03:00
sha256 = "sha256-XcYEX2cl4ySalpkY+uaWY6HWaRYgh3ILq825D86eayo=";
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.hostPlatform;
2022-07-30 19:21:10 +03:00
if isx86 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";
mainProgram = "nmon";
homepage = "https://nmon.sourceforge.net";
2018-03-30 15:19:08 +03:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ sveitser ];
};
}