3
0
Fork 0
forked from mirrors/nixpkgs

haskellPackages: Fix ListLike for 8.02 and 8.22

This commit is contained in:
Silvan Mosberger 2018-09-17 03:50:53 +02:00
parent d1b6cb7e6e
commit 7e5917a031
No known key found for this signature in database
GPG key ID: 9424360B4B85C9E7
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;
}