From a506ebf2ec271ddec60e0108cece037e8d5718af Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 14 Mar 2016 15:57:03 +0100 Subject: [PATCH] htop: add licence; myself as a de-facto maintainer --- pkgs/os-specific/linux/htop/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/htop/default.nix b/pkgs/os-specific/linux/htop/default.nix index ce82ca9a5e4..946b44346ab 100644 --- a/pkgs/os-specific/linux/htop/default.nix +++ b/pkgs/os-specific/linux/htop/default.nix @@ -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 ]; }; }