summaryrefslogtreecommitdiff
path: root/coalpit.cabal
diff options
context:
space:
mode:
authordefanor <defanor@uberspace.net>2016-11-25 06:35:55 +0300
committerdefanor <defanor@uberspace.net>2016-11-25 06:35:55 +0300
commit4beea4536a36322e15665de74c96926f0cf5fe7b (patch)
tree3fbf95944351b0ceaf4c925715ee9bec4069fb7d /coalpit.cabal
Initial commit
Diffstat (limited to 'coalpit.cabal')
-rw-r--r--coalpit.cabal31
1 files changed, 31 insertions, 0 deletions
diff --git a/coalpit.cabal b/coalpit.cabal
new file mode 100644
index 0000000..4625ecf
--- /dev/null
+++ b/coalpit.cabal
@@ -0,0 +1,31 @@
+-- Initial coalpit.cabal generated by cabal init. For further
+-- documentation, see http://haskell.org/cabal/users-guide/
+
+name: coalpit
+version: 0.1.0.0
+-- synopsis:
+-- description:
+license: BSD3
+license-file: LICENSE
+author: defanor
+maintainer: defanor@uberspace.net
+-- copyright:
+category: Console
+build-type: Simple
+extra-source-files: ChangeLog.md
+cabal-version: >=1.10
+
+executable coalpit-example
+ main-is: Example.hs
+ -- other-modules:
+ other-extensions: TemplateHaskell
+ build-depends: base >=4.9 && <4.10
+ , template-haskell >=2.11 && <2.12
+ default-language: Haskell2010
+
+library
+ exposed-modules: Coalpit
+ other-extensions: TemplateHaskell, FlexibleInstances
+ build-depends: base >=4.9 && <4.10
+ , template-haskell >=2.11 && <2.12
+ default-language: Haskell2010