You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, cabal-hoogle reads setup-config file produced by Cabal library. That file is not backward compatible.
This can only be solved properly when Cabal supports --enable-build-info, see this upstream issue.
As a workaround, you may add a constraints section to your cabal.project.local, so that your Setup.hs uses the same Cabal as cabal-hoogle, like below:
constraints:
Cabal == 3.6.2.0 -- change this to the Cabal version you used to build `cabal-hoogle`
The text was updated successfully, but these errors were encountered:
Currently,
cabal-hoogle
readssetup-config
file produced byCabal
library. That file is not backward compatible.This can only be solved properly when Cabal supports
--enable-build-info
, see this upstream issue.As a workaround, you may add a constraints section to your
cabal.project.local
, so that yourSetup.hs
uses the sameCabal
ascabal-hoogle
, like below:The text was updated successfully, but these errors were encountered: