about summary refs log tree commit diff
path: root/gopher-proxy.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'gopher-proxy.cabal')
-rw-r--r--gopher-proxy.cabal35
1 files changed, 35 insertions, 0 deletions
diff --git a/gopher-proxy.cabal b/gopher-proxy.cabal
new file mode 100644
index 0000000..07d81f8
--- /dev/null
+++ b/gopher-proxy.cabal
@@ -0,0 +1,35 @@
+-- Initial gopher-proxy.cabal generated by cabal init.  For further 
+-- documentation, see http://haskell.org/cabal/users-guide/
+
+name:                gopher-proxy
+version:             0.1.0.0
+synopsis:            proxy gopher over http
+license:             GPL-3
+license-file:        LICENSE
+author:              sternenseemann
+maintainer:          git@lukasepple.de
+-- copyright:           
+category:            Network
+build-type:          Simple
+extra-source-files:  ChangeLog.md
+cabal-version:       >=1.10
+
+executable gopher-proxy
+  main-is:             Main.hs
+  -- other-modules:       
+  -- other-extensions:    
+  build-depends:       base
+                     , wai
+                     , warp
+                     , http-types
+                     , lucid
+                     , bytestring
+                     , text
+                     , network
+                     , attoparsec
+                     , errors
+                     , mime-types
+                     , optparse-generic
+                     , optparse-applicative
+  hs-source-dirs:      src
+  default-language:    Haskell2010