mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
top-level/release-haskell.nix: don't test microhs on musl, add hugs
This commit is contained in:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user