.cabal ファイルは次のとおりです。
Name: myprogram
Version: 0.1
-- blah blah blah
Cabal-version: >=1.9.2
Executable myprogram
HS-source-dirs: src
Main-is: Main.hs
Build-depends: attoparsec == 0.10.*,
base == 4.3.*,
-- long long list of packages
Test-Suite test
HS-source-dirs: test, src
Type: exitcode-stdio-1.0
Main-is: Main.hs
Build-depends: attoparsec == 0.10.*,
base == 4.3.*,
-- long long list of packages
QuickCheck == 2.4.*
テスト スイートのビルド依存パッケージの長いリストを「実行可能ファイルと同じものに QuickCheck を加えたもの」に置き換える方法はありますか?
編集:バージョン情報。
- cabal-dev 0.9
- cabal-install 0.10.2
- カバル ライブラリ 1.10.2.0
- GHC 7.0.4
- Haskell プラットフォーム 2011.4.0.0