summaryrefslogtreecommitdiff
path: root/utils/ghc-pkg/ghc-pkg.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'utils/ghc-pkg/ghc-pkg.cabal')
-rw-r--r--utils/ghc-pkg/ghc-pkg.cabal32
1 files changed, 32 insertions, 0 deletions
diff --git a/utils/ghc-pkg/ghc-pkg.cabal b/utils/ghc-pkg/ghc-pkg.cabal
new file mode 100644
index 0000000000..90722a62f7
--- /dev/null
+++ b/utils/ghc-pkg/ghc-pkg.cabal
@@ -0,0 +1,32 @@
+Name: ghc-pkg
+-- XXX Version number
+Version: 6.9
+Copyright: XXX
+License: BSD3
+-- XXX License-File: LICENSE
+Author: XXX
+Maintainer: cvs-fptools@haskell.org
+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 ghc-pkg
+ Main-Is: Main.hs
+ Extensions: CPP, ForeignFunctionInterface
+ if flag(base3)
+ Build-Depends: base >= 3 && < 4,
+ directory >= 1 && < 1.1,
+ process >= 1 && < 1.1,
+ pretty >= 1 && < 1.1
+ else
+ Build-Depends: base < 3
+ Build-Depends: haskell98, filepath, Cabal
+ if !os(windows)
+ Build-Depends: unix
+