about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-darwin.nix
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2022-02-26 00:40:23 +0100
committersternenseemann <sternenseemann@systemli.org>2022-02-26 00:40:23 +0100
commit028b0da11b68d72b86ab62d73f8b03d9be1f1343 (patch)
tree4ccc4c2b0e8cb75f3ecb52bd50cf61a98f4040c2 /pkgs/development/haskell-modules/configuration-darwin.nix
parent2460c8b1a5366846e669cf13100e9c1838a8a5fe (diff)
haskellPackages.reflection: disable test suite on darwin
The test suite crashes with a memory access violation or similar, seems
like a possible RTS bug, reported to reflection upstream for now.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-darwin.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-darwin.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-darwin.nix b/pkgs/development/haskell-modules/configuration-darwin.nix
index 825262fe4b478..3fa4f08f85251 100644
--- a/pkgs/development/haskell-modules/configuration-darwin.nix
+++ b/pkgs/development/haskell-modules/configuration-darwin.nix
@@ -282,6 +282,10 @@ self: super: ({
     '' + drv.postPatch or "";
   }) super.foldl;
 
+  # Strange crash in test suite
+  # https://github.com/ekmett/reflection/issues/51
+  reflection = dontCheck super.reflection;
+
 } // lib.optionalAttrs pkgs.stdenv.isAarch64 {  # aarch64-darwin
 
   # https://github.com/fpco/unliftio/issues/87