about summary refs log tree commit diff
path: root/pkgs/tools/system/s-tui/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/system/s-tui/default.nix')
-rw-r--r--pkgs/tools/system/s-tui/default.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/tools/system/s-tui/default.nix b/pkgs/tools/system/s-tui/default.nix
deleted file mode 100644
index 15bedadccef0..000000000000
--- a/pkgs/tools/system/s-tui/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ lib
-, stdenv
-, python3Packages
-, fetchPypi
-, nix-update-script
-, s-tui
-, testers
-}:
-
-python3Packages.buildPythonPackage rec {
-  pname = "s-tui";
-  version = "1.1.6";
-
-  src = fetchPypi {
-    inherit pname version;
-    hash = "sha256-nSdpnM8ubodlPwmvdmNFTn9TsS8i7lWBZ2CifMHDe1c=";
-  };
-
-  propagatedBuildInputs = with python3Packages; [
-    urwid
-    psutil
-  ];
-
-  passthru = {
-    updateScript = nix-update-script { };
-    tests = testers.testVersion { package = s-tui; };
-  };
-
-  meta = with lib; {
-    homepage = "https://amanusk.github.io/s-tui/";
-    description = "Stress-Terminal UI monitoring tool";
-    license = licenses.gpl2Plus;
-    maintainers = [ ];
-    broken = stdenv.isDarwin; # https://github.com/amanusk/s-tui/issues/49
-    mainProgram = "s-tui";
-  };
-}