diff options
author | Ian Lynagh <igloo@earth.li> | 2009-03-05 16:20:45 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-03-05 16:20:45 +0000 |
commit | bb57db143d9c0207e4c2c4c24ceb688714c2980d (patch) | |
tree | d1d0d00ebc96785b33370c3493bfed5bbfa2ec9b /utils/runghc/runghc.cabal.in | |
parent | 8ffd91b6102f4ad3111cabdf6bdb1998f257887f (diff) | |
download | haskell-bb57db143d9c0207e4c2c4c24ceb688714c2980d.tar.gz |
Add --version to runghc. Trac #2757.
We use the GHC version number, as the old runghc one doesn't seem very
useful.
Diffstat (limited to 'utils/runghc/runghc.cabal.in')
-rw-r--r-- | utils/runghc/runghc.cabal.in | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/utils/runghc/runghc.cabal.in b/utils/runghc/runghc.cabal.in new file mode 100644 index 0000000000..7b3fc1b13a --- /dev/null +++ b/utils/runghc/runghc.cabal.in @@ -0,0 +1,28 @@ +Name: runghc +Version: @ProjectVersion@ +Copyright: XXX +License: BSD3 +-- XXX License-File: LICENSE +Author: XXX +Maintainer: XXX +Synopsis: XXX +Description: + XXX +Category: Development +build-type: Simple +cabal-version: >=1.2 + +Flag base3 + Description: Choose the new smaller, split-up base package. + +Executable runghc + Main-Is: runghc.hs + + if flag(base3) + Build-Depends: base >= 3 && < 5, + directory >= 1 && < 1.1, + process >= 1 && < 1.1 + else + Build-Depends: base < 3 + Build-Depends: filepath + |