Merge pull request #14089 from aneeshusa/fix-htop-platforms

htop: fix platforms attribute
This commit is contained in:
joachifm 2016-03-20 21:40:15 +00:00
commit 1bf6628ee5

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