summaryrefslogtreecommitdiff
path: root/ghc
diff options
context:
space:
mode:
authorHerbert Valerio Riedel <hvr@gnu.org>2015-12-21 14:38:27 +0100
committerHerbert Valerio Riedel <hvr@gnu.org>2015-12-21 14:38:27 +0100
commit25db56c264c6cddb100a5df5e5eeb2fd32bfe7b6 (patch)
tree857613f9511e8d6f25a66deecaaf46c0d9e61a62 /ghc
parent9f23dd9d05eb0945fa7a60492d2f2721d364327b (diff)
downloadhaskell-25db56c264c6cddb100a5df5e5eeb2fd32bfe7b6.tar.gz
Minor clean-up to ghc-bin.cabal.in
This has been factored out of D1673
Diffstat (limited to 'ghc')
-rw-r--r--ghc/ghc-bin.cabal.in16
1 files changed, 9 insertions, 7 deletions
diff --git a/ghc/ghc-bin.cabal.in b/ghc/ghc-bin.cabal.in
index 885e587468..dc303e5296 100644
--- a/ghc/ghc-bin.cabal.in
+++ b/ghc/ghc-bin.cabal.in
@@ -33,12 +33,13 @@ Executable ghc
directory >= 1 && < 1.3,
process >= 1 && < 1.5,
filepath >= 1 && < 1.5,
- ghc-boot,
+ ghc-boot == 0.0.*,
ghc
+
if os(windows)
- Build-Depends: Win32
+ Build-Depends: Win32 == 2.3.*
else
- Build-Depends: unix
+ Build-Depends: unix == 2.7.*
C-Sources: hschooks.c
@@ -46,10 +47,12 @@ Executable ghc
if flag(ghci)
-- NB: this is never built by the bootstrapping GHC+libraries
Build-depends:
+ containers == 0.5.*,
+ deepseq == 1.4.*,
ghci,
- containers == 0.5.*,
- deepseq == 1.4.*,
- time == 1.6.*
+ haskeline == 0.7.*,
+ time == 1.6.*,
+ transformers == 0.5.*
CPP-Options: -DGHCI
GHC-Options: -fno-warn-name-shadowing
Other-Modules:
@@ -57,7 +60,6 @@ Executable ghc
GhciMonad
GhciTags
InteractiveUI
- Build-Depends: transformers, haskeline
Other-Extensions:
BangPatterns
FlexibleInstances