haskell-utf8-string: fix build with GHC HEAD

This commit is contained in:
Peter Simons 2017-04-21 16:13:42 +02:00
parent 25a1ef369b
commit 7462c7d2f7

View File

@ -53,7 +53,7 @@ self: super: {
postPatch = "sed -i -e 's|base < 4.8|base|' hspec-expectations.cabal";
});
utf8-string = overrideCabal super.utf8-string (drv: {
postPatch = "sed -i -e 's|base >= 3 && < 4.8|base|' utf8-string.cabal";
postPatch = "sed -i -e 's|base >= 4.3 && < 4.10|base|' utf8-string.cabal";
});
# bos/attoparsec#92