summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-10-19 10:35:41 +0200
committerPeter Simons <simons@cryp.to>2018-10-19 14:44:22 +0200
commit2e0f10b3d73714e2690be4e079d9cda09cd0dd58 (patch)
treea96360c3cc1035b5d490e71650ff654262f2b913 /pkgs/development/haskell-modules
parentd4fb2748f1201df8600195bc96143979dd949bd9 (diff)
downloadnixlib-2e0f10b3d73714e2690be4e079d9cda09cd0dd58.tar
nixlib-2e0f10b3d73714e2690be4e079d9cda09cd0dd58.tar.gz
nixlib-2e0f10b3d73714e2690be4e079d9cda09cd0dd58.tar.bz2
nixlib-2e0f10b3d73714e2690be4e079d9cda09cd0dd58.tar.lz
nixlib-2e0f10b3d73714e2690be4e079d9cda09cd0dd58.tar.xz
nixlib-2e0f10b3d73714e2690be4e079d9cda09cd0dd58.tar.zst
nixlib-2e0f10b3d73714e2690be4e079d9cda09cd0dd58.zip
haskell-easytest: apply patches to fix the build with ghc-8.6.x
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix6
1 files changed, 6 insertions, 0 deletions
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 53a21fdde309..a966cdd934f3 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";
+  });
+
 }