From 06111390c0e2ad4b7707417ec5251e5ed5fe858c Mon Sep 17 00:00:00 2001 From: cidkidnix Date: Tue, 5 Dec 2023 14:29:38 -0600 Subject: [PATCH] Attempt to fix iOS builds again --- haskell-overlays/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haskell-overlays/default.nix b/haskell-overlays/default.nix index 5d4ac6baf..8f2e82dde 100644 --- a/haskell-overlays/default.nix +++ b/haskell-overlays/default.nix @@ -77,7 +77,7 @@ rec { })) # TODO(Dylan): Add this casing to the compiler patch - (optionalExtension (super.ghc.stdenv.targetPlatform.isiOS && super.ghc.stdenv.targetPlatform.isx86_64) (self: super: { + (optionalExtension (super.ghc.stdenv.targetPlatform.isiOS && (super.ghc.stdenv.targetPlatform.isx86_64 || super.ghc.version == "8.6.5")) (self: super: { mkDerivation = drv: super.mkDerivation (drv // { buildFlags = [ "--ghc-option=-fwhole-archive-hs-libs"