Skip to content

Commit ba5a434

Browse files
committed
Nix: disable flaky flatparse test suite
Fails on macos-14 runner
1 parent 7887cf6 commit ba5a434

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

default.nix

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
}:
44
let
55
nixpkgs =
6-
nixpkgsRaw //
7-
{ haskellPackages =
8-
nixpkgsRaw.haskellPackages.override {
6+
nixpkgsRaw.pkgs.lib.recursiveUpdate # See https://nix.dev/guides/best-practices.html#updating-nested-attribute-sets
7+
nixpkgsRaw
8+
{ pkgs.haskell.packages.${compiler} =
9+
nixpkgsRaw.pkgs.haskell.packages.${compiler}.override {
910
overrides = self: super: {
10-
statistics = self.haskell.lib.dontCheck super.statistics;
11+
statistics = nixpkgsRaw.pkgs.haskell.lib.dontCheck super.statistics;
12+
flatparse = nixpkgsRaw.pkgs.haskell.lib.dontCheck super.flatparse;
1113
};
1214
};
1315
};

0 commit comments

Comments
 (0)