forked from mirrors/nixpkgs
release-haskell: fix comment on pkgsMusl.haskellPackages
This commit is contained in:
parent
aca8a4e36d
commit
95cd2f7a1f
|
@ -258,8 +258,14 @@ let
|
||||||
pkgsMusl.haskellPackages =
|
pkgsMusl.haskellPackages =
|
||||||
removePlatforms
|
removePlatforms
|
||||||
[
|
[
|
||||||
"aarch64-linux" # aarch64 does not appear to be supported
|
# pkgsMusl is compiled natively with musl. It is not
|
||||||
"x86_64-darwin" # musl only supports linux
|
# cross-compiled (unlike pkgsStatic). We can only
|
||||||
|
# natively bootstrap GHC with musl on x86_64-linux because
|
||||||
|
# upstream doesn't provide a musl bindist for aarch64.
|
||||||
|
"aarch64-linux"
|
||||||
|
|
||||||
|
# musl only supports linux, not darwin.
|
||||||
|
"x86_64-darwin"
|
||||||
]
|
]
|
||||||
{
|
{
|
||||||
inherit (packagePlatforms pkgs.pkgsMusl.haskellPackages)
|
inherit (packagePlatforms pkgs.pkgsMusl.haskellPackages)
|
||||||
|
|
Loading…
Reference in a new issue