2012-04-04 16:46:17 +02:00
|
|
|
{ fetchurl, stdenv, ncurses }:
|
2007-09-02 18:54:08 +02:00
|
|
|
|
2012-04-04 16:46:17 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-05-11 12:26:45 +02:00
|
|
|
name = "htop-1.0.3";
|
2011-07-09 00:45:28 +02:00
|
|
|
|
2008-12-12 00:18:46 +01:00
|
|
|
src = fetchurl {
|
2014-05-11 12:26:45 +02:00
|
|
|
url = "http://hisham.hm/htop/releases/1.0.3/htop-1.0.3.tar.gz";
|
|
|
|
sha256 = "0a8qbpsifzjwc4f45xfwm48jhm59g6q5hlib4bf7z13mgy95fp05";
|
2008-12-12 00:18:46 +01:00
|
|
|
};
|
2011-07-09 00:45:28 +02:00
|
|
|
|
2012-04-04 16:46:17 +02:00
|
|
|
buildInputs = [ ncurses ];
|
2011-07-09 00:45:28 +02:00
|
|
|
|
2008-12-12 00:18:46 +01:00
|
|
|
meta = {
|
|
|
|
description = "An interactive process viewer for Linux";
|
|
|
|
homepage = "http://htop.sourceforge.net";
|
2010-08-14 01:11:58 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-05-11 12:26:45 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ rob simons relrod ];
|
2008-12-12 00:18:46 +01:00
|
|
|
};
|
2007-09-02 18:54:08 +02:00
|
|
|
}
|