-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimHelpGen.cabal
46 lines (36 loc) · 1.12 KB
/
vimHelpGen.cabal
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
cabal-version: 2.4
name: vimHelpGen
version: 0.1.0.0
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
-- The license under which the package is released.
-- license:
author: Trouble-Truffle
maintainer: perigordtruffle7318@gmail.com
-- A copyright notice.
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
executable vimdowner
main-is: Main.hs
other-modules: Markdown
VimHelpSyntax
Util
Filetype
exposed-modules: Main
build-depends: base ^>=4.15.1.0
, cmark-gfm >= 0.2.3
, containers >= 0.6
, mtl >= 2.2.2
, lens >= 5.1.1
, text >= 1.2
, terminal-size >= 0.3
, directory >= 1.3.6
, filepath >= 1.4
hs-source-dirs: src
ghc-options: -O2 -Wall -Werror
default-language: Haskell2010