From dd558e0baa8a42136cb0f4436b0711bdc66b15ef Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Fri, 9 Jan 2015 16:24:38 -0500 Subject: [PATCH] Disable old-locale for aeson on 7.10 @peti why does hackage2nix enable that flag anyway? --- pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix index 1698556d9b9..8d1248e8322 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix @@ -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";