about summary refs log tree commit diff
path: root/users/multi/pkgs/htop/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/multi/pkgs/htop/default.nix')
-rw-r--r--users/multi/pkgs/htop/default.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/users/multi/pkgs/htop/default.nix b/users/multi/pkgs/htop/default.nix
deleted file mode 100644
index f023410bd2a3..000000000000
--- a/users/multi/pkgs/htop/default.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ pkgs, ... }:
-
-let
-  newVer = "3.0.2";
-
-  newSrc = pkgs.fetchFromGitHub {
-    owner = "htop-dev";
-    repo = "htop";
-    rev = "59ef15b2ad6037f40d7fe4207b2b59dd11b14b8b";
-    sha256 = "0sirwfvqwwq2x2k25vd4k4cf9d5qv17yjizidxq4y5xfh2v0djmd";
-  };
-in
-  with pkgs; htop.overrideAttrs
-    ({ nativeBuildInputs ? [], ... }:
-      {
-        nativeBuildInputs = nativeBuildInputs ++ [ autoreconfHook ];
-        src = newSrc;
-        version = newVer;
-      })