summaryrefslogtreecommitdiff
path: root/libraries/ghci/ghci.cabal.in
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/ghci/ghci.cabal.in')
-rw-r--r--libraries/ghci/ghci.cabal.in69
1 files changed, 69 insertions, 0 deletions
diff --git a/libraries/ghci/ghci.cabal.in b/libraries/ghci/ghci.cabal.in
new file mode 100644
index 0000000000..e9ceb46608
--- /dev/null
+++ b/libraries/ghci/ghci.cabal.in
@@ -0,0 +1,69 @@
+-- WARNING: ghci.cabal is automatically generated from ghci.cabal.in by
+-- ../../configure. Make sure you are editing ghci.cabal.in, not ghci.cabal.
+
+name: ghci
+version: @ProjectVersionMunged@
+license: BSD3
+license-file: LICENSE
+category: GHC
+maintainer: ghc-devs@haskell.org
+bug-reports: https://ghc.haskell.org/trac/ghc/newticket
+synopsis: XXX
+description:
+ XXX
+cabal-version: >=1.10
+build-type: Simple
+extra-source-files: changelog.md
+
+source-repository head
+ type: git
+ location: http://git.haskell.org/ghc.git
+ subdir: libraries/ghci
+
+library
+ default-language: Haskell2010
+ other-extensions:
+ BangPatterns
+ CPP
+ DeriveGeneric
+ ExistentialQuantification
+ FlexibleInstances
+ GADTs
+ GeneralizedNewtypeDeriving
+ InstanceSigs
+ MagicHash
+ MultiParamTypeClasses
+ RecordWildCards
+ ScopedTypeVariables
+ StandaloneDeriving
+ TupleSections
+ UnboxedTuples
+
+ exposed-modules:
+ GHCi.Message
+ GHCi.ResolvedBCO
+ GHCi.RemoteTypes
+ GHCi.ObjLink
+ GHCi.CreateBCO
+ GHCi.FFI
+ GHCi.InfoTable
+ GHCi.Run
+ GHCi.Signals
+ GHCi.TH
+ GHCi.TH.Binary
+ SizedSeq
+
+ Build-Depends:
+ array == 0.5.*,
+ base == 4.9.*,
+ binary == 0.8.*,
+ bytestring == 0.10.*,
+ containers == 0.5.*,
+ deepseq == 1.4.*,
+ filepath == 1.4.*,
+ ghc-boot == @ProjectVersionMunged@,
+ template-haskell == 2.11.*,
+ transformers == 0.5.*
+
+ if !os(windows)
+ Build-Depends: unix == 2.7.*