2016-03-14 07:50:36 -07:00
|
|
|
{ fetchurl, stdenv, ncurses }:
|
2007-09-02 09:54:08 -07:00
|
|
|
|
2012-04-04 07:46:17 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2016-03-07 14:15:15 -08:00
|
|
|
name = "htop-${version}";
|
|
|
|
version = "2.0.1";
|
2011-07-08 15:45:28 -07:00
|
|
|
|
2016-03-14 07:50:36 -07:00
|
|
|
src = fetchurl {
|
|
|
|
sha256 = "0rjn9ybqx5sav7z4gn18f1q6k23nmqyb6yydfgghzdznz9nn447l";
|
|
|
|
url = "http://hisham.hm/htop/releases/${version}/${name}.tar.gz";
|
2008-12-11 15:18:46 -08:00
|
|
|
};
|
2011-07-08 15:45:28 -07:00
|
|
|
|
2012-04-04 07:46:17 -07:00
|
|
|
buildInputs = [ ncurses ];
|
2015-09-06 17:08:23 -07:00
|
|
|
|
2016-03-14 07:57:03 -07:00
|
|
|
meta = with stdenv.lib; {
|
2008-12-11 15:18:46 -08:00
|
|
|
description = "An interactive process viewer for Linux";
|
2016-03-14 07:57:03 -07:00
|
|
|
homepage = http://htop.sourceforge.net;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ rob simons relrod nckx ];
|
2008-12-11 15:18:46 -08:00
|
|
|
};
|
2007-09-02 09:54:08 -07:00
|
|
|
}
|