Skip to content

Commit

Permalink
haskellPackages: fix build of miso/reflex deps (#373056)
Browse files Browse the repository at this point in the history
  • Loading branch information
sternenseemann authored Jan 12, 2025
2 parents 9b9a6f5 + aa12f81 commit 7e89ea5
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1854,8 +1854,21 @@ self: super: {
# https://github.com/adnelson/semver-range/issues/15
semver-range = dontCheck super.semver-range;

# 2022-06-19: Disable checks because of https://github.com/reflex-frp/reflex/issues/475
reflex = doJailbreak (dontCheck super.reflex);
reflex = lib.pipe super.reflex [
doJailbreak
# Until hackage release has https://github.com/reflex-frp/reflex/pull/517
(overrideCabal (drv: {
postPatch = drv.postPatch or "" + ''
substituteInPlace \
src/Data/AppendMap.hs \
src/Reflex/Class.hs \
src/Reflex/FunctorMaybe.hs \
src/Reflex/Spider/Internal.hs \
test/DebugCycles.hs \
--replace-fail Data.Witherable Witherable
'';
}))
];

# 2024-03-02: vty <5.39 - https://github.com/reflex-frp/reflex-ghci/pull/33
reflex-ghci = assert super.reflex-ghci.version == "0.2.0.1"; doJailbreak super.reflex-ghci;
Expand Down

0 comments on commit 7e89ea5

Please sign in to comment.