1

What is the easiest way of finding an LTS on Stackage with the right version of some particular package (in my case base-4.5.*).

As of now I've had to resort to finding the right resolver by trial and error, which is cumbersome to say the least.

I've tried searching on Google and the Stackage FAQ, but came up empty-handed.

SwiftsNamesake
  • 1,540
  • 2
  • 11
  • 25

1 Answers1

1

The major version of base is closely linked to the version of ghc (as you can see on this wiki page). Since the ghc version only changes on a major version change of LTS, you could always look at each major version and see if one matches (there is on 6).

However, I think you are out of luck, since the first version of stackage, lts-1.0, has ghc-7.8.4 and base-4.7.0.2, you won't find any LTS for base-4.5 on stackage.

madjar
  • 12,691
  • 2
  • 44
  • 52