From ac54dfcdf24d6969026f06ef963795094293f387 Mon Sep 17 00:00:00 2001 From: Tommy Bidne Date: Wed, 6 Sep 2023 09:22:15 +1200 Subject: [PATCH] haskellPackages.file-io: unbreak for ghc 9.6 --- pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix index d0efc39ae8f5..182a259df31c 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix @@ -79,6 +79,9 @@ self: super: { aeson = doJailbreak super.aeson; free = doJailbreak super.free; + # Requires filepath >= 1.4.100.0 <=> GHC >= 9.6 + file-io = unmarkBroken super.file-io; + # Too strict upper bound on template-haskell # https://github.com/mokus0/th-extras/pull/21 th-extras = doJailbreak super.th-extras;