haskellPackages.monad-memo: Fix testsuite

This commit is contained in:
Shea Levy 2017-12-22 09:11:41 -05:00
parent bd424fdce9
commit 302202ccde
No known key found for this signature in database
GPG Key ID: 5C0BD6957D86FE27
1 changed files with 8 additions and 0 deletions

View File

@ -997,4 +997,12 @@ self: super: {
# See https://github.com/haskell/haddock/issues/679
language-puppet = dontHaddock super.language-puppet;
# Missing FlexibleContexts in testsuite
# https://github.com/EduardSergeev/monad-memo/pull/4
monad-memo =
let patch = pkgs.fetchpatch
{ url = https://github.com/EduardSergeev/monad-memo/pull/4.patch;
sha256 = "14mf9940arilg6v54w9bc4z567rfbmm7gknsklv965fr7jpinxxj";
};
in appendPatch super.monad-memo patch;
}