2015-08-17 23:08:44 +00:00
|
|
|
{ fetchFromGitHub, stdenv, autoreconfHook, ncurses }:
|
2007-09-02 16:54:08 +00:00
|
|
|
|
2012-04-04 14:46:17 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-09-09 16:21:56 +00:00
|
|
|
name = "htop-1.0.3-239-229d0058";
|
2011-07-08 22:45:28 +00:00
|
|
|
|
2015-08-17 23:08:44 +00:00
|
|
|
src = fetchFromGitHub {
|
2015-09-09 05:33:18 +00:00
|
|
|
sha256 = "1bym6ligd8db4iyv2m1y7aylh7f9fmk71v67rkhird05hx1xb80r";
|
|
|
|
rev = "229d005851af8dca595b3df8e385375fb9c382b4";
|
2015-08-17 23:08:44 +00:00
|
|
|
repo = "htop";
|
|
|
|
owner = "hishamhm";
|
2008-12-11 23:18:46 +00:00
|
|
|
};
|
2011-07-08 22:45:28 +00:00
|
|
|
|
2012-04-04 14:46:17 +00:00
|
|
|
buildInputs = [ ncurses ];
|
2015-08-17 23:08:44 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2011-07-08 22:45:28 +00:00
|
|
|
|
2015-09-07 00:08:23 +00:00
|
|
|
postPatch = ''
|
|
|
|
touch *.h # unnecessary regeneration requires Python
|
|
|
|
'';
|
|
|
|
|
2008-12-11 23:18:46 +00:00
|
|
|
meta = {
|
|
|
|
description = "An interactive process viewer for Linux";
|
|
|
|
homepage = "http://htop.sourceforge.net";
|
2010-08-13 23:11:58 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-05-11 10:26:45 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ rob simons relrod ];
|
2008-12-11 23:18:46 +00:00
|
|
|
};
|
2007-09-02 16:54:08 +00:00
|
|
|
}
|