htop: fix platforms attribute

See comments at
57dd725e85.

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:26:09 -04:00
parent e5343cd9e6
commit 16ed322928

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 ];
};
}