From e8826a9ac4856bc4f29fa4b535749d2797ad2d69 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 7 Sep 2017 09:54:18 +0200 Subject: [PATCH] haskell-aws: jailbreak when building with ghc-8.2.x --- pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix index ddc32b74ec6..a3337bbb351 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix @@ -63,6 +63,9 @@ self: super: { protolude = doJailbreak super.protolude; quickcheck-instances = doJailbreak super.quickcheck-instances; + # https://github.com/aristidb/aws/issues/238 + aws = doJailbreak super.aws; + # LTS-9 versions do not compile. path = dontCheck super.path; path-io = super.path-io_1_3_3;