]> git.netwichtig.de Git - user/henk/code/haskell/birch.git/blob - package.yaml
1acd14ebbb24071f38a615a4925ab9ac4bc1d39d
[user/henk/code/haskell/birch.git] / package.yaml
1 name:                birch
2 version:             0.1.0.0
3 github:              "githubuser/birch"
4 license:             GPL
5 author:              "Hendrik Jaeger"
6 maintainer:          "code@henk.geekmail.org"
7 copyright:           "2019"
8
9 extra-source-files:
10 - README.md
11 - ChangeLog.md
12
13 # Metadata used when publishing your package
14 # synopsis:            Short description of your package
15 # category:            Web
16
17 # To avoid duplicated efforts in documentation and dealing with the
18 # complications of embedding Haddock markup inside cabal files, it is
19 # common to point users to the README.md file.
20 description:         bot for IRC in Haskell
21
22 dependencies:
23 - base >= 4.7 && < 5
24 - network
25
26 library:
27   source-dirs: src
28
29 executables:
30   birch:
31     main:                Main.hs
32     source-dirs:         app
33     ghc-options:
34     - -threaded
35     - -rtsopts
36     - -with-rtsopts=-N
37     dependencies:
38     - birch
39
40 tests:
41   birch-test:
42     main:                Spec.hs
43     source-dirs:         test
44     ghc-options:
45     - -threaded
46     - -rtsopts
47     - -with-rtsopts=-N
48     dependencies:
49     - birch