mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
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:
parent
e5343cd9e6
commit
16ed322928
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user