From 57dd725e853b54c578e3b73f520756be3ff2359c Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 20 Mar 2016 19:35:59 +0000 Subject: [PATCH] htop: fix supported platforms list --- pkgs/tools/system/htop/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/system/htop/default.nix b/pkgs/tools/system/htop/default.nix index 9c05c07c052c..a9d15b317f98 100644 --- a/pkgs/tools/system/htop/default.nix +++ b/pkgs/tools/system/htop/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { description = "An interactive process viewer for Linux"; homepage = https://hisham.hm/htop/; license = licenses.gpl2Plus; - platforms = platforms.all; + platforms = with platforms; [ linux freebsd openbsd darwin ]; maintainers = with maintainers; [ rob simons relrod nckx ]; }; }