top-level/release-haskell.nix: don't test microhs on musl, add hugs (#509877)

This commit is contained in:
Wolfgang Walther
2026-04-30 10:06:38 +00:00
committed by GitHub
+5 -1
View File
@@ -293,6 +293,7 @@ let
hlint
hpack
hscolour
hugs
icepeak
ihaskell
jacinda
@@ -376,7 +377,10 @@ let
"aarch64-darwin"
]
{
haskell.compiler = packagePlatforms pkgs.pkgsMusl.haskell.compiler;
haskell.compiler = packagePlatforms (
# hugs doesn't build on musl yet
lib.filterAttrs (name: _: !(lib.hasPrefix "microhs" name)) pkgs.pkgsMusl.haskell.compiler
);
# Get some cache going for MUSL-enabled GHC.
haskellPackages = {