summary refs log tree commit diff
path: root/pkgs/os-specific/linux/htop/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/htop/default.nix')
-rw-r--r--pkgs/os-specific/linux/htop/default.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/pkgs/os-specific/linux/htop/default.nix b/pkgs/os-specific/linux/htop/default.nix
deleted file mode 100644
index 946b44346ab..00000000000
--- a/pkgs/os-specific/linux/htop/default.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ fetchurl, stdenv, ncurses }:
-
-stdenv.mkDerivation rec {
-  name = "htop-${version}";
-  version = "2.0.1";
-
-  src = fetchurl {
-    sha256 = "0rjn9ybqx5sav7z4gn18f1q6k23nmqyb6yydfgghzdznz9nn447l";
-    url = "http://hisham.hm/htop/releases/${version}/${name}.tar.gz";
-  };
-
-  buildInputs = [ ncurses ];
-
-  meta = with stdenv.lib; {
-    description = "An interactive process viewer for Linux";
-    homepage = http://htop.sourceforge.net;
-    license = licenses.gpl2Plus;
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ rob simons relrod nckx ];
-  };
-}