这实际上是 How can I tell Cabal which dependency to use?的后续问题. 包haskell-src-meta有两个依赖项: template-haskell =2.7 2.9,template-haskell =2.4 2.7 和template-haskell 2.7不会在我的系统上构建.我知道解决方
包haskell-src-meta有两个依赖项:
template-haskell >=2.7 && <2.9, template-haskell >=2.4 && <2.7
和template-haskell 2.7不会在我的系统上构建.我知道解决方法是:
cabal install --constraint="template-haskell == 2.5.0.0" haskell-src-meta
但是,我现在想为我编写的具有这些依赖关系的软件编写我自己的cabal文件.它似乎不足以:
Build-depends: template-haskell-2.5.0.0
相反,我实际上想说haskell-src-meta是构建依赖项,但是进一步告诉cabal它应该使用上面指定的相同约束来安装该依赖项.有没有办法做到这一点?
也许“安装”约束是你想要的.cabal install --constraint "template-haskell installed" my-custom-package