From c35a3fb3f72941b3c64420cda2270da4607a5a37 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Sun, 15 Nov 2020 02:04:30 +0100 Subject: [PATCH] haskellPackages.aeson: Fix build --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5c016f633f6..99cd74c5bab 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1416,4 +1416,7 @@ self: super: { # brittany release in a while and this version works with 8.10. # And we need to build it anyways. brittany = dontCheck super.hls-brittany; + + # 2020-11-15: aeson 1.5.4.1 needs to new quickcheck-instances for testing + aeson = dontCheck super.aeson; } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super