about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/nmon/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/nmon/default.nix')
-rw-r--r--pkgs/os-specific/linux/nmon/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/os-specific/linux/nmon/default.nix b/pkgs/os-specific/linux/nmon/default.nix
deleted file mode 100644
index 3de22bfae6d7..000000000000
--- a/pkgs/os-specific/linux/nmon/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ 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 ];
-  };
-}