haskell-gi: apply upstream patch to fix the doctest suite

This commit is contained in:
Peter Simons 2018-05-09 20:01:49 +02:00
parent 5c26dd3195
commit 77fbd14d85

View File

@ -422,8 +422,11 @@ self: super: {
# https://github.com/evanrinehart/mikmod/issues/1
mikmod = addExtraLibrary super.mikmod pkgs.libmikmod;
# https://github.com/haskell-gi/haskell-gi/pull/163
haskell-gi = dontCheck super.haskell-gi;
# Version 0.21.2 calls its doctest suite with incorrect paths.
haskell-gi = appendPatch super.haskell-gi (pkgs.fetchpatch {
url = https://github.com/haskell-gi/haskell-gi/pull/163/commits/b876c4f351893370d4ae597aab6ecc0422e7f665.patch;
sha256 = "03vzpvnr3vnz2zgsr504iyf0n9aw6mkz8rkj6zhazfixl3dzfkyd";
});
# https://github.com/basvandijk/threads/issues/10
threads = dontCheck super.threads;