From 2e0f10b3d73714e2690be4e079d9cda09cd0dd58 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 19 Oct 2018 10:35:41 +0200 Subject: [PATCH] haskell-easytest: apply patches to fix the build with ghc-8.6.x --- .../development/haskell-modules/configuration-ghc-8.6.x.nix | 6 ++++++ 1 file changed, 6 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 53a21fdde30..a966cdd934f 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix @@ -101,4 +101,10 @@ self: super: { # skylighting-core = dontCheck super.skylighting-core; + # https://github.com/joelburget/easytest/issues/12 + easytest = appendPatch super.easytest (pkgs.fetchpatch { + url = https://github.com/joelburget/easytest/pull/13.patch; + sha256 = "0gnsgga8x2yxyg27pya6rhmxfsxf167vsi4xdj98fn8v0j7zz1v1"; + }); + }