1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

ghc-events: fix build of latest version with ghc-7.8.x

This commit is contained in:
Peter Simons 2015-06-04 13:20:44 +02:00
parent a982892116
commit e0f7ab678a

View file

@ -131,4 +131,7 @@ self: super: {
patchPhase = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal"; } patchPhase = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal"; }
); );
# Overriding mtl 2.2.x is fine here because ghc-events is an stand-alone executable.
ghc-events = super.ghc-events.override { mtl = self.mtl_2_2_1; };
} }