blob: c0053e98348867be3a244710b77cc1454509fc3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
Name: ghci-wrapper
Version: @ProjectVersion@
Copyright: XXX
License: BSD3
-- XXX License-File: LICENSE
Author: XXX
Maintainer: XXX
Synopsis: A wrapper around GHCi allowing convenient execution of scripts
Description:
@ghci@ is a small wrapper program around GHC used on Windows
to ensure that console setup is performed correctly.
Category: Development
build-type: Simple
cabal-version: >=1.10
Executable ghci
Default-Language: Haskell2010
Main-Is: ghci.c
-- This is only used on Windows.
if !os(windows)
buildable: False
Include-Dirs: ../utils
C-Sources:
ghci.c
-- the following get copied from ../utils by hadrian
getLocation.c isMinTTY.c cwrapper.c
|