Description
Issue #8489 showed that cabal contains two separate lists of packages that cannot be installed. This issue is for determining whether the lists have the same meaning and combining them if they are redundant. #8501 synced the contents of the two lists.
One is in the solver and is described as non-installable:
cabal/cabal-install-solver/src/Distribution/Solver/Modular/Solver.hs
Lines 158 to 173 in 09c90de
The other is in Distribution.Client.Dependency and is described as non-upgradable:
cabal/cabal-install/src/Distribution/Client/Dependency.hs
Lines 387 to 414 in 09c90de
If only one is needed, I think we should keep the one in Distribution.Client.Dependency, since it is better to make the solver more general and pass in constraints rather than hard code package names.