about summary refs log tree commit diff
path: root/spacecookie.cabal
blob: 0c5ab4ef30b0821378eb2ec4fa6abee4d71c3d58 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
cabal-version:       >= 2.0
name:                spacecookie
version:             0.2.1.1
synopsis:            Gopher Library and Server Daemon
description:         Simple gopher library that allows writing custom gopher
                     applications. Also includes a fully-featured gopher server
                     daemon complete with gophermap-support built on top of it.
license:             GPL-3
license-file:        LICENSE
author:              Lukas Epple
maintainer:          git@lukasepple.de
category:            Network
build-type:          Simple
homepage:            https://github.com/sternenseemann/spacecookie
bug-reports:         https://github.com/sternenseemann/spacecookie/issues
extra-source-files:  CHANGELOG.md
                     README.md
                     etc/spacecookie.json
                     etc/spacecookie.service
                     etc/spacecookie.socket
                     docs/gophermap
                     docs/gophermap-pygopherd.txt
                     docs/rfc1436.txt

executable spacecookie
  main-is:             Main.hs
  build-depends:       base >= 4.9.0.0 && <5
                     , socket
                     , unix
                     , directory
                     , filepath
                     , containers
                     , bytestring
                     , filepath
                     , mtl
                     , transformers
                     , aeson
                     , attoparsec
                     , spacecookie
                     , systemd >= 2.1.0
  hs-source-dirs:      server
  default-language:    Haskell2010
  other-modules:       Config
                     , Systemd

library
  hs-source-dirs:      src
  default-language:    Haskell2010
  exposed-modules:     Network.Gopher
                     , Network.Gopher.Util.Gophermap
                     , Network.Gopher.Util
  other-modules:       Network.Gopher.Types
  build-depends:       base >= 4.9.0 && <5
                     , socket
                     , unix
                     , directory
                     , filepath
                     , containers
                     , bytestring
                     , filepath
                     , mtl
                     , transformers
                     , attoparsec
                     , hxt-unicode
                     , fast-logger >= 2.4.0 && < 3.1

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