forked from mirrors/nixpkgs
haskellPackages: Fix ListLike for 8.02 and 8.22
This commit is contained in:
parent
d1b6cb7e6e
commit
7e5917a031
|
@ -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;
|
||||
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue