Disable old-locale for aeson on 7.10

@peti why does hackage2nix enable that flag anyway?
This commit is contained in:
Shea Levy 2015-01-09 16:24:38 -05:00
parent 753539800e
commit dd558e0baa

View file

@ -53,6 +53,11 @@ self: super: {
configureFlags = [];
});
# We have time 1.5
aeson = overrideCabal super.aeson (drv: {
configureFlags = [];
});
# Setup: At least the following dependencies are missing: base <4.8
hspec-expectations = overrideCabal super.hspec-expectations (drv: {
patchPhase = "sed -i -e 's|base < 4.8|base|' hspec-expectations.cabal";