about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
diff options
context:
space:
mode:
authorAlexandre Esteves <alexfmpe@proton.me>2024-05-01 20:37:52 +0100
committerAlexandre Esteves <alexfmpe@proton.me>2024-05-01 21:30:14 +0100
commitc17cf689c9ba9242d531cc1fdcc3f20119d8cea5 (patch)
tree7f747aad3561684e5caf40dbb5900048b31e4717 /pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
parenta78477d2ba0022ec78d0a6a98fdf52232aee4372 (diff)
haskellPackages.patch: fix build on ghc 9.8
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
index 624b767f47c97..f1435b4ff8275 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
@@ -131,4 +131,10 @@ self: super: {
       })
     super.libmpd;
 
+  # Loosen bounds
+  patch = appendPatch (pkgs.fetchpatch {
+    url = "https://github.com/reflex-frp/patch/commit/91fed138483a7bf2b098d45b9e5cc36191776320.patch";
+    sha256 = "sha256-/KLfIshia88lU5G/hA7ild7+a2mqc7qgSa9AEBqEqkQ=";
+  }) super.patch;
+
 }