htop: add licence; myself as a de-facto maintainer

This commit is contained in:
Tobias Geerinckx-Rice 2016-03-14 15:57:03 +01:00
parent 561f93d59c
commit a506ebf2ec
1 changed files with 5 additions and 4 deletions

View File

@ -11,10 +11,11 @@ stdenv.mkDerivation rec {
buildInputs = [ ncurses ];
meta = {
meta = with stdenv.lib; {
description = "An interactive process viewer for Linux";
homepage = "http://htop.sourceforge.net";
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ rob simons relrod ];
homepage = http://htop.sourceforge.net;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ rob simons relrod nckx ];
};
}