From 2f055cec0ae2d8b58ac09b2afe3455054f4f52af Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 19 Oct 2018 11:38:27 +0200 Subject: [PATCH] stack: jailbreak to fix build with ghc-8.6.1 --- pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix index 4a650ccfd9ec..df44097e5ac2 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix @@ -118,4 +118,7 @@ self: super: { # https://github.com/jgm/pandoc/issues/4974 pandoc = doJailbreak super.pandoc_2_3_1; + # Break out of "yaml >=0.10.4.0 && <0.11". + stack = doJailbreak super.stack; + }