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 {
|
|
|
|
name = "htop-1.0.1";
|
2011-07-09 00:45:28 +02:00
|
|
|
|
2008-12-12 00:18:46 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/htop/${name}.tar.gz";
|
2012-04-04 16:46:17 +02:00
|
|
|
sha256 = "1wh62mb102nxd5h3pnzakdf0lcyapv1yq44ndcc9wpw30az2rnq7";
|
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;
|
2012-04-04 16:46:17 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.rob ];
|
2008-12-12 00:18:46 +01:00
|
|
|
};
|
2007-09-02 18:54:08 +02:00
|
|
|
}
|