summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-07-13 15:07:05 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-07-13 15:07:05 +0200
commitb7a0833e686e6d5dd9dca7e07ece90bf813ee3a9 (patch)
tree40706732768d10bf67639fdd053357b57a5bbc28 /pkgs
parent54e1d5a3e6375bef22e046454e7eb3cb659f83bd (diff)
downloadnixpkgs-b7a0833e686e6d5dd9dca7e07ece90bf813ee3a9.tar
nixpkgs-b7a0833e686e6d5dd9dca7e07ece90bf813ee3a9.tar.gz
nixpkgs-b7a0833e686e6d5dd9dca7e07ece90bf813ee3a9.tar.bz2
nixpkgs-b7a0833e686e6d5dd9dca7e07ece90bf813ee3a9.tar.lz
nixpkgs-b7a0833e686e6d5dd9dca7e07ece90bf813ee3a9.tar.xz
nixpkgs-b7a0833e686e6d5dd9dca7e07ece90bf813ee3a9.tar.zst
nixpkgs-b7a0833e686e6d5dd9dca7e07ece90bf813ee3a9.zip
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.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/release-haskell.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/top-level/release-haskell.nix b/pkgs/top-level/release-haskell.nix
index 27449ac9726..9cc5fb7e0a0 100644
--- a/pkgs/top-level/release-haskell.nix
+++ b/pkgs/top-level/release-haskell.nix
@@ -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