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.
This commit is contained in:
Aneesh Agrawal
2016-03-20 17:27:34 -04:00
parent e5343cd9e6
commit 16ed322928
+1 -1
View File
@@ -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 ];
};
}