summaryrefslogtreecommitdiff
path: root/hs/vimwiki.cabal
blob: 339f0c3b14b79e61d4ae5f40828908196e42bdd7 (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
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-type-defaults
  other-modules:
  build-depends:
    base >=4.9,
    directory,
    filepath,
    unix,
    pandoc,
    pandoc-types,
    text,
    containers,
    blaze-markup,
    blaze-html,
    doctemplates,
    extra
  default-language:    Haskell2010