如何告诉cabal为我的程序的某个依赖项指定依赖项?

时间:2012-03-12 21:48:12

标签: haskell constraints cabal

这实际上是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不会在我的系统上构建。我知道解决方法是:

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它应该使用上面指定的相同constraint安装该依赖项。有没有办法做到这一点?

1 个答案:

答案 0 :(得分:1)

也许“安装”约束就是你想要的。

cabal install --constraint "template-haskell installed" my-custom-package