Skip to content

Commit

Permalink
haskellPackages.monad-memo: Fix testsuite
Browse files Browse the repository at this point in the history
  • Loading branch information
shlevy committed Dec 22, 2017
1 parent bd424fd commit 302202c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Expand Up @@ -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;
}

1 comment on commit 302202c

@shlevy
Copy link
Member Author

@shlevy shlevy commented on 302202c Dec 22, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.