From d54f3eae7d779ac791ed35492459402de209bdc0 Mon Sep 17 00:00:00 2001 From: Jakub Janczak Date: Sun, 16 Jun 2019 10:15:06 +0200 Subject: [PATCH] Fixing the build on darwin by adding those magical ghc flags to clear the global db (which should not be global, because of nix) - say no more --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 2c29c86..0b2fdd5 100644 --- a/default.nix +++ b/default.nix @@ -51,7 +51,7 @@ with rec '' repl() { shopt -s globstar - ghci -Wall app/NivTest.hs src/**/*.hs + ghci -clear-package-db -global-package-db -Wall app/NivTest.hs src/**/*.hs } echo "To start a REPL session, run:"