forked from mirrors/nixpkgs
top-level/release-haskell.nix: don't test ghc865Binary on musl
pkgsMusl.haskell.compiler.ghc865Binary is known and expected to not work, so we can remove it easily. Also gets rid of annoying evaluation errors.
This commit is contained in:
parent
54e1d5a3e6
commit
b7a0833e68
|
@ -96,7 +96,12 @@ let
|
|||
writers = testPlatforms.writers;
|
||||
};
|
||||
|
||||
pkgsMusl.haskell.compiler = packagePlatforms pkgs.pkgsMusl.haskell.compiler;
|
||||
pkgsMusl.haskell.compiler = packagePlatforms pkgs.pkgsMusl.haskell.compiler // {
|
||||
# remove musl ghc865Binary since it is known to be broken and
|
||||
# causes an evaluation error on darwin.
|
||||
# TODO: remove ghc865Binary altogether and use ghc8102Binary
|
||||
ghc865Binary = {};
|
||||
};
|
||||
|
||||
# test some statically linked packages to catch regressions
|
||||
# and get some cache going for static compilation with GHC
|
||||
|
|
Loading…
Reference in a new issue