summaryrefslogtreecommitdiff
path: root/hs/vimwiki.cabal
blob: 74d497b3537684fbc38f8db903b64675d7b5745b (plain)
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
cabal-version:       >= 1.10

name:                vimwiki
version:             0.1
-- synopsis:
-- description:
-- bug-reports:
license:             AGPL
license-file:        LICENSE
author:              Hugo Hörnquist
maintainer:          hugo@lysator.liu.se
copyright:           Hugo Hörnquist 2022
homepage:            https://git.hornquist.se/git/vimwiki-scripts
category:            Network
build-type:          Simple

executable Main
  -- import:              deps
  main-is:             main.hs
  ghc-options:         -Wall -W
      -- "needed" for generated code, could be fixed with better TemplateHaskell
      -Wno-missing-signatures
      -- common names are to useful
      -Wno-name-shadowing
      -- this one is just silly
      -Wno-unused-do-bind
      -Wno-orphans
      -Wno-type-defaults
  other-modules:
    Config,
    Files,
    Links,
    Html,
    Handlingar,
    Util
  build-depends:
    base >=4.9,
    data-default,
    directory,
    filepath,
    unix,
    pandoc,
    pandoc-types,
    text,
    containers,
    config-ini,
    optparse-applicative,
    blaze-markup,
    blaze-html,
    doctemplates,
    lens,
    network-uri,
    pretty-show,
    extra
  default-language:    Haskell2010