Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2840,6 +2840,21 @@ self: super: {
# base <4.14
decimal-literals = doJailbreak super.decimal-literals;

# 2024-06-22: hevm ghc96 fixes
hevm = lib.pipe super.hevm [
(appendPatch (fetchpatch {
url = "https://github.com/ethereum/hevm/compare/02c072f...hellwolf:hevm:c29d3a7.patch";
hash = "sha256-cL26HD77vXsiKqo5G6PXgK0q19MUGMwaNium5x93CBI=";
}))
(overrideCabal (old: {
postPatch = old.postPatch or "" + ''
sed -i 's/^ *brick .*,/brick,/' hevm.cabal
sed -i 's/^ *vty .*,/vty,/' hevm.cabal
'';
}))
doJailbreak
];

# multiple bounds too strict
snaplet-sqlite-simple = doJailbreak super.snaplet-sqlite-simple;

Expand Down