From 553a55e690dff6dc86e3d99b6ed2679478d6f59b Mon Sep 17 00:00:00 2001 From: Hamish Mackenzie Date: Wed, 9 Feb 2022 14:52:13 +1300 Subject: [PATCH] Fix for compilation with ghc 8.6.5 --- src/Nix/Reduce.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Nix/Reduce.hs b/src/Nix/Reduce.hs index 6eb3cdac7..2a9ffd2a3 100644 --- a/src/Nix/Reduce.hs +++ b/src/Nix/Reduce.hs @@ -22,7 +22,7 @@ module Nix.Reduce import Nix.Prelude import Control.Monad.Catch ( MonadCatch(catch) ) -#if !MIN_VERSION_base(4,13,0) +#if !MIN_VERSION_base(4,12,0) import Prelude hiding ( fail ) import Control.Monad.Fail #endif