forked from mirrors/nixpkgs
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
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||||
description = "An interactive process viewer for Linux";
|
description = "An interactive process viewer for Linux";
|
||||||
homepage = https://hisham.hm/htop/;
|
homepage = https://hisham.hm/htop/;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = with platforms; [ linux freebsd openbsd darwin ];
|
platforms = with platforms; linux ++ freebsd ++ openbsd ++ darwin;
|
||||||
maintainers = with maintainers; [ rob simons relrod nckx ];
|
maintainers = with maintainers; [ rob simons relrod nckx ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue