Merge pull request #46766 from Infinisil/fix/haskell/ListLike

haskellPackages: Fix ListLike for 8.02 and 8.22
This commit is contained in:
Peter Simons 2018-09-17 15:24:55 +02:00 committed by GitHub
commit 0d871ef780
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -81,4 +81,8 @@ self: super: {
haddock-library = self.haddock-library_1_4_3;
haddock-api = self.haddock-api_2_17_4;
haddock = self.haddock_2_17_5;
# GHC 8.0 doesn't have semigroups included by default
ListLike = addBuildDepend super.ListLike self.semigroups;
}

View File

@ -96,4 +96,7 @@ self: super: {
haddock-library = dontHaddock (dontCheck self.haddock-library_1_5_0_1);
}));
# GHC 8.2 doesn't have semigroups included by default
ListLike = addBuildDepend super.ListLike self.semigroups;
}