From 16ed322928b30b39942054abb3b5d026ec1a3ec0 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Sun, 20 Mar 2016 17:26:09 -0400 Subject: [PATCH] htop: fix platforms attribute See comments at https://github.com/NixOS/nixpkgs/commit/57dd725e853b54c578e3b73f520756be3ff2359c. These values are already lists and need to be concatenated together instead of placed in another 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 a9d15b317f9..46547aa45fd 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 = with platforms; [ linux freebsd openbsd darwin ]; + platforms = with platforms; linux ++ freebsd ++ openbsd ++ darwin; maintainers = with maintainers; [ rob simons relrod nckx ]; }; }