summaryrefslogtreecommitdiff
path: root/utils/pwd/pwd.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'utils/pwd/pwd.cabal')
-rw-r--r--utils/pwd/pwd.cabal24
1 files changed, 24 insertions, 0 deletions
diff --git a/utils/pwd/pwd.cabal b/utils/pwd/pwd.cabal
new file mode 100644
index 0000000000..5422a734ee
--- /dev/null
+++ b/utils/pwd/pwd.cabal
@@ -0,0 +1,24 @@
+Name: pwd
+Version: 0.1
+Copyright: XXX
+License: BSD
+-- XXX License-File: LICENSE
+-- XXX Author:
+-- XXX Maintainer:
+Synopsis: XXX
+Description:
+ XXX
+build-type: Simple
+cabal-version: >=1.2
+
+Flag base3
+ Description: Choose the new smaller, split-up base package.
+
+Executable pwd
+ Main-Is: pwd.hs
+ if flag(base3)
+ Build-Depends: base >= 3 && < 4,
+ directory >= 1 && < 1.1
+ else
+ Build-Depends: base < 3
+