From d9e60e4d43ae21dbd63b76cf86edcc8f56c4d764 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sat, 19 Mar 2016 22:18:53 +0000 Subject: htop: merge both implementations htop 2.0+ is now cross-platform --- pkgs/tools/system/htop/default.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pkgs/tools/system/htop/default.nix (limited to 'pkgs/tools/system/htop') diff --git a/pkgs/tools/system/htop/default.nix b/pkgs/tools/system/htop/default.nix new file mode 100644 index 0000000000000..9c05c07c052cd --- /dev/null +++ b/pkgs/tools/system/htop/default.nix @@ -0,0 +1,21 @@ +{ 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 = https://hisham.hm/htop/; + license = licenses.gpl2Plus; + platforms = platforms.all; + maintainers = with maintainers; [ rob simons relrod nckx ]; + }; +} -- cgit 1.4.1