Stack - 我如何(强制?)安装旧版本的包

Stack - How do I (force?) install an old version of a package

所以我正在尝试安装 ghc-mod-5.4.0.0,它与其他一些安装程序一起崩溃:

Error: While constructing the build plan, the following exceptions were encountered:

In the dependencies for ghc-mod-5.4.0.0:
    async-2.1.1 must match <2.1 && >=2.0.2 (latest applicable is 2.0.2)
    cabal-helper-0.7.3.0 must match <0.7 && >=0.6.1.0 (latest applicable is 0.6.3.1)
    cereal-0.5.4.0 must match <0.5 && >=0.4 (latest applicable is 0.4.1.1)
    directory-1.3.0.0 must match <1.3 (latest applicable is 1.2.7.1)
    extra-1.5.1 must match ==1.4.* (latest applicable is 1.4.12)
    ghc-8.0.2 must match >=7.4 && <7.11
    haskell-src-exts-1.18.2 must match <1.18 && >=1.16.0.1 (latest applicable is 1.17.1)
    pipes-4.3.2 must match ==4.1.* (latest applicable is 4.1.9)
    process-1.4.3.0 must match <1.3 (latest applicable is 1.2.3.0)
    time-1.6.0.1 must match <1.6 (latest applicable is 1.5.0.1)
    transformers-0.5.2.0 must match <0.5 (latest applicable is 0.4.3.0)

Plan construction failed.

那么我该如何强制它安装那个版本呢?有没有简单的方法来清除堆栈安装缓存或类似的东西?

我觉得像

stack --resolver lts-4.2 install ghc-mod

应该可以解决问题,否则我会按照 cabal get ghc-mod-5.4.0.0stack initstack install 的方式做一些事情。您可能需要 install/switch 到不同的 ghc-version 或使用相当于 --allow-newer

的堆栈