about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/ttop/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/system/ttop/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/system/ttop/default.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/nixpkgs/pkgs/tools/system/ttop/default.nix b/nixpkgs/pkgs/tools/system/ttop/default.nix
deleted file mode 100644
index ceea0e215b1f..000000000000
--- a/nixpkgs/pkgs/tools/system/ttop/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ lib, nimPackages, fetchFromGitHub, testers }:
-
-nimPackages.buildNimPackage (finalAttrs: {
-  pname = "ttop";
-  version = "1.2.7";
-  nimBinOnly = true;
-
-  src = fetchFromGitHub {
-    owner = "inv2004";
-    repo = "ttop";
-    rev = "v${finalAttrs.version}";
-    hash = "sha256-oPdaUqh6eN1X5kAYVvevOndkB/xnQng9QVLX9bu5P5E=";
-  };
-
-  buildInputs = with nimPackages; [ asciigraph illwill jsony parsetoml zippy ];
-
-  nimFlags = [
-    "-d:NimblePkgVersion=${finalAttrs.version}"
-  ];
-
-  passthru.tests = {
-    version = testers.testVersion {
-      package = finalAttrs.finalPackage;
-    };
-  };
-
-  meta = with lib; {
-    description = "Top-like system monitoring tool";
-    homepage = "https://github.com/inv2004/ttop";
-    changelog = "https://github.com/inv2004/ttop/releases/tag/${finalAttrs.src.rev}";
-    license = licenses.mit;
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ figsoda sikmir ];
-  };
-})