2015-08-18 00:08:44 +01:00
|
|
|
{ fetchFromGitHub, stdenv, autoreconfHook, ncurses }:
|
2007-09-02 17:54:08 +01:00
|
|
|
|
2012-04-04 15:46:17 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-08-20 21:12:09 +01:00
|
|
|
name = "htop-1.0.3-584-8f07868f";
|
2011-07-08 23:45:28 +01:00
|
|
|
|
2015-08-18 00:08:44 +01:00
|
|
|
src = fetchFromGitHub {
|
2015-08-20 21:12:09 +01:00
|
|
|
sha256 = "0s7l9v7n7hw32hznvdq2sykyxgb30hmzycwcjxw8f0c2mww61xcd";
|
|
|
|
rev = "8f07868fefeb844a852fab704c0763b0e9a9bf01";
|
2015-08-18 00:08:44 +01:00
|
|
|
repo = "htop";
|
|
|
|
owner = "hishamhm";
|
2008-12-11 23:18:46 +00:00
|
|
|
};
|
2011-07-08 23:45:28 +01:00
|
|
|
|
2012-04-04 15:46:17 +01:00
|
|
|
buildInputs = [ ncurses ];
|
2015-08-18 00:08:44 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2011-07-08 23:45:28 +01:00
|
|
|
|
2008-12-11 23:18:46 +00:00
|
|
|
meta = {
|
|
|
|
description = "An interactive process viewer for Linux";
|
|
|
|
homepage = "http://htop.sourceforge.net";
|
2010-08-14 00:11:58 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-05-11 11:26:45 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ rob simons relrod ];
|
2008-12-11 23:18:46 +00:00
|
|
|
};
|
2007-09-02 17:54:08 +01:00
|
|
|
}
|