diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2017-07-18 23:08:55 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2017-07-18 23:57:03 +0200 |
commit | 0d11176c20feb3e8627e6297735b1b952613896a (patch) | |
tree | 0ab685447eb1054beba07d3d4801ca34e48ab386 /packages | |
parent | b8fec6950ad99cbf11cd22698b8d5ab35afb828f (diff) | |
download | haskell-wip/cabal-parsec.tar.gz |
Enable building Cabal with parsecwip/cabal-parsec
Cabal's parser has been rewritten in terms of Parsec
(which is not enabled yet in Cabal-2.0 by default, but can be enabled by
a cabal flag). The plan for Cabal is to drop support for the non-parsec
parser, so we need to prepare GHC to cope with new situation.
However, this means that lib:Cabal requires three new library
dependencies:
- parsec
- text
- mtl
What complicates matters is that we need to build `ghc-cabal` early on
during the bootstrap phase which currently needs to invoke `ghc --make`
directly. So these additional dependencies need to be integrated into
the monolithic `ghc --make` invocation which produces the `ghc-cabal`
executable.
Diffstat (limited to 'packages')
-rw-r--r-- | packages | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -52,9 +52,12 @@ libraries/directory - - ssh://g libraries/filepath - - ssh://git@github.com/haskell/filepath.git libraries/haskeline - - https://github.com/judah/haskeline.git libraries/hpc - - - +libraries/mtl - - https://github.com/ekmett/mtl.git +libraries/parsec - - https://github.com/haskell/parsec.git libraries/pretty - - https://github.com/haskell/pretty.git libraries/process - - ssh://git@github.com/haskell/process.git libraries/terminfo - - https://github.com/judah/terminfo.git +libraries/text - - https://github.com/bos/text.git libraries/time - - https://github.com/haskell/time.git libraries/transformers - - https://git.haskell.org/darcs-mirrors/transformers.git libraries/unix - - ssh://git@github.com/haskell/unix.git |