Skip to content

Commit 2025fc6

Browse files
committed
Override additional GHC base packages missed by stack2nix
input-output-hk/stack2nix#134 input-output-hk/stack2nix#84
1 parent 617f857 commit 2025fc6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

nix/overlays/required.nix

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,14 @@ self: super: {
2626
} // pkgs.lib.optionalAttrs (args ? src) {
2727
src = cleanSourceHaskell args.src;
2828
});
29+
30+
# stack2nix doesn't have the right set of GHC base packages nulled out for 8.4, as
31+
# per https://github.com/input-output-hk/stack2nix/issues/84, which means
32+
# we can hit https://github.com/input-output-hk/stack2nix/issues/134 unless
33+
# we do it oursevles.
34+
mtl = null;
35+
parsec = null;
36+
stm = null;
37+
text = null;
38+
xhtml = null;
2939
}

0 commit comments

Comments
 (0)