about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
diff options
context:
space:
mode:
authorTommy Bidne <tbidne@protonmail.com>2023-09-06 09:22:15 +1200
committerTommy Bidne <tbidne@protonmail.com>2023-09-06 09:22:15 +1200
commitac54dfcdf24d6969026f06ef963795094293f387 (patch)
tree6d01a7d555b014a45389f899b3f5ecbfb704140b /pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
parent58c3652956a7cfdc3be6445fc91694e8e64ddd02 (diff)
downloadnixlib-ac54dfcdf24d6969026f06ef963795094293f387.tar
nixlib-ac54dfcdf24d6969026f06ef963795094293f387.tar.gz
nixlib-ac54dfcdf24d6969026f06ef963795094293f387.tar.bz2
nixlib-ac54dfcdf24d6969026f06ef963795094293f387.tar.lz
nixlib-ac54dfcdf24d6969026f06ef963795094293f387.tar.xz
nixlib-ac54dfcdf24d6969026f06ef963795094293f387.tar.zst
nixlib-ac54dfcdf24d6969026f06ef963795094293f387.zip
haskellPackages.file-io: unbreak for ghc 9.6
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix3
1 files changed, 3 insertions, 0 deletions
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;