about summary refs log tree commit diff
path: root/gopher-proxy.cabal
blob: 31bd026fc449aca0c1116f279b7e210f5ed6b967 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
-- 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
description:         A simple gopher-over-http proxy to http-ify gopher spaces.
license:             GPL-3
license-file:        LICENSE
author:              sternenseemann
maintainer:          git@lukasepple.de
category:            Network
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10
data-files:          gopher-proxy.css

executable gopher-proxy
  main-is:             Main.hs
  default-extensions:  CPP
  other-modules:       Paths_gopher_proxy
  build-depends:       base
                     , wai
                     , warp
                     , http-types
                     , lucid
                     , bytestring
                     , text
                     , network
                     , attoparsec
                     , errors
                     , mime-types
                     , optparse-applicative
                     , directory
  hs-source-dirs:      src
  default-language:    Haskell2010

source-repository head
  type: git
  location: git://github.com/sternenseemann/gopher-proxy.git