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:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user